mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-05 20:48:22 +00:00
f54e9246c1
If we want to have a full picture of versions running in a cluster, we need to add a `_cat/plugins` endpoint. Response could look like: ```sh % curl es2:9200/_cat/plugins?v node component version type url desc es1 mapper-attachments 1.7.0 j Adds the attachment type allowing to parse difference attachment formats es1 lang-javascript 1.4.0 j JavaScript plugin allowing to add javascript scripting support es1 analysis-smartcn 1.9.0 j Smart Chinese analysis support es1 marvel 1.1.0 j/s http://localhost:9200/_plugins/marvel Elasticsearch Management & Monitoring es1 kopf 0.5.3 s http://localhost:9200/_plugins/kopf kopf - simple web administration tool for ElasticSearch es2 mapper-attachments 2.0.0.RC1 j Adds the attachment type allowing to parse difference attachment formats es2 lang-javascript 2.0.0.RC1 j JavaScript plugin allowing to add javascript scripting support es2 analysis-smartcn 2.0.0.RC1 j Smart Chinese analysis support ``` Closes #4824.
21 lines
948 B
Plaintext
21 lines
948 B
Plaintext
[[cat-plugins]]
|
|
== Plugins
|
|
|
|
The `plugins` command provides a view per node of running plugins. This information *spans nodes*.
|
|
|
|
[source,shell]
|
|
------------------------------------------------------------------------------
|
|
% curl 'localhost:9200/_cat/plugins?v'
|
|
name component version type isolation url
|
|
Abraxas cloud-azure 2.1.0-SNAPSHOT j x
|
|
Abraxas lang-groovy 2.0.0 j x
|
|
Abraxas lang-javascript 2.0.0-SNAPSHOT j x
|
|
Abraxas marvel NA j/s x /_plugin/marvel/
|
|
Abraxas lang-python 2.0.0-SNAPSHOT j x
|
|
Abraxas inquisitor NA s /_plugin/inquisitor/
|
|
Abraxas kopf 0.5.2 s /_plugin/kopf/
|
|
Abraxas segmentspy NA s /_plugin/segmentspy/
|
|
-------------------------------------------------------------------------------
|
|
|
|
We can tell quickly how many plugins per node we have and which versions.
|