Get plugin info
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.
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" } ] }