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.
Query parameters
-
pretty boolean
If you append
?pretty=true
to the request, the JSON returned will be pretty formatted. Use it for debugging only!
GET
/_node/plugins
curl \
-X GET http://api.example.com/_node/plugins
Response examples (200)
{
"total": 1,
"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"
}
]
}