This documentation contains work-in-progress information for future Elastic Stack and Cloud releases. Use the version selector to view supported release docs. It also contains some Elastic Cloud serverless information. Check out our serverless docs for more details.
Plugins info API
editPlugins info API
editThe plugins info API gets information about all Logstash plugins that are currently installed.
This API basically returns the output of running the bin/logstash-plugin list --verbose
command.
curl -XGET 'localhost:9600/_node/plugins?pretty'
See Common Options for a list of options that can be applied to all Logstash monitoring APIs.
The output is a JSON document.
Example response:
{ "total": 93, "plugins": [ { "name": "logstash-codec-cef", "version": "4.1.2" }, { "name": "logstash-codec-collectd", "version": "3.0.3" }, { "name": "logstash-codec-dots", "version": "3.0.2" }, { "name": "logstash-codec-edn", "version": "3.0.2" }, . . . ]