October 2019
Beginner
186 pages
5h 39m
English
To retrieve information about plugins and modules installed in the nodes, the following command is used:
GET /_nodes/plugins
Using the preceding command, we can get the details of plugins and modules. The following expression shows a snippet of the module:
"modules" : [ { "name" : "aggs-matrix-stats", "version" : "7.1.1", "elasticsearch_version" : "7.1.1", "java_version" : "1.8", "description" : "Adds aggregations whose input are a list of numeric fields and output includes a matrix.", "classname" : "org.elasticsearch.search.aggregations.matrix.MatrixAggregationPlugin", "extended_plugins" : [ ], "has_native_controller" : false }]
The preceding expression shows the aggs-matrix-stats module details. The GET /_nodes/plugins ...
Read now
Unlock full access