Reputation: 368
How do I view the versions of the elasticsearch plugins I am using? I have tried
$ES_HOME/bin/plugin --list
but it doesn't give the version
Upvotes: 1
Views: 227
Reputation: 17461
You can use the Nodes Info api to query the plugin list and version
Example:
curl -XGET localhost:9200/_nodes/_all/plugins
Upvotes: 2