WARNING: Version 1.7 of Elasticsearch has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. For the latest information, see the current release documentation.
Stats and Info APIs
editStats and Info APIs
editThe cluster_state
, nodes_info
,
nodes_stats
and indices_stats
APIs have all been changed to make their format more RESTful and less clumsy.
For instance, if you just want the nodes
section of the the cluster_state
,
instead of:
GET /_cluster/state?filter_metadata&filter_routing_table&filter_blocks
you now use:
GET /_cluster/state/nodes
Similarly for the nodes_stats
API, if you want the transport
and http
metrics only, instead of:
GET /_nodes/stats?clear&transport&http
you now use:
GET /_nodes/stats/transport,http
See the links above for full details.