Get plugin info

GET /_node/plugins

Get information about all Logstash plugins that are currently installed. This API returns the same output you get by running the bin/logstash-plugin list --verbose command.

Query parameters

  • pretty boolean

    If you append ?pretty=true to the request, the JSON returned will be pretty formatted. Use it for debugging only!

Responses

  • 200 application/json

    Indicates a successful call

    Hide response attributes Show response attributes object
    • total integer
    • plugins array[object]
      Hide plugins attributes Show plugins attributes object
      • name string
      • version string
GET /_node/plugins
curl \ --request GET 'http://api.example.com/_node/plugins' \ --user "username:password"
Response examples (200)
{ "total": 4, "plugins": [ { "name": "logstash-codec-cef", "version": "6.2.8" }, { "name": "logstash-codec-collectd", "version": "3.0.3" }, { "name": "logstash-codec-dots", "version": "3.0.2" }, { "name": "logstash-coded-edn", "version": "3.0.2" } ] }