Steven Yang
Steven Yang

Reputation: 368

How do I view which versions of Elasticsearch plugin I am using

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

Answers (1)

keety
keety

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

Related Questions