| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 | [[cluster-nodes-stats]]== Nodes Stats[float]=== Nodes statisticsThe cluster nodes stats API allows to retrieve one or more (or all) ofthe cluster nodes statistics.[source,js]--------------------------------------------------curl -XGET 'http://localhost:9200/_nodes/stats'curl -XGET 'http://localhost:9200/_nodes/nodeId1,nodeId2/stats'--------------------------------------------------The first command retrieves stats of all the nodes in the cluster. Thesecond command selectively retrieves nodes stats of only `nodeId1` and`nodeId2`. All the nodes selective options are explained<<cluster-nodes,here>>.By default, all stats are returned. You can limit this by combining anyof `indices`, `os`, `process`, `jvm`, `network`, `transport`, `http`,`fs`, `breaker` and `thread_pool`. For example:[horizontal]`indices`:: 	Indices stats about size, document count, indexing and	deletion times, search times, field cache size, merges and flushes`fs`:: 	File system information, data path, free disk space, read/write	stats`http`:: 	HTTP connection information`jvm`:: 	JVM stats, memory pool information, garbage collection, buffer	pools`network`:: 	TCP information`os`:: 	Operating system stats, load average, cpu, mem, swap`process`:: 	Process statistics, memory consumption, cpu usage, open	file descriptors`thread_pool`:: 	Statistics about each thread pool, including current	size, queue and rejected tasks`transport`:: 	Transport statistics about sent and received bytes in	cluster communication`breaker`::	Statistics about the field data circuit breaker[source,js]--------------------------------------------------# return indices and oscurl -XGET 'http://localhost:9200/_nodes/stats/os'# return just os and processcurl -XGET 'http://localhost:9200/_nodes/stats/os,process'# specific type endpointcurl -XGET 'http://localhost:9200/_nodes/stats/process'curl -XGET 'http://localhost:9200/_nodes/10.0.0.1/stats/process'--------------------------------------------------The `all` flag can be set to return all the stats.[float][[field-data]]=== Field data statisticsYou can get information about field data memory usage on nodelevel or on index level.[source,js]--------------------------------------------------# Node Statscurl -XGET 'http://localhost:9200/_nodes/stats/indices/?fields=field1,field2&pretty'# Indices Statcurl -XGET 'http://localhost:9200/_stats/fielddata/?fields=field1,field2&pretty'# You can use wildcards for field namescurl -XGET 'http://localhost:9200/_stats/fielddata/?fields=field*&pretty'curl -XGET 'http://localhost:9200/_nodes/stats/indices/?fields=field*&pretty'--------------------------------------------------[float][[search-groups]]=== Search groupsYou can get statistics about search groups for searches executedon this node.[source,js]--------------------------------------------------# All groups with all statscurl -XGET 'http://localhost:9200/_nodes/stats?pretty&groups=_all'# Some groups from just the indices statscurl -XGET 'http://localhost:9200/_nodes/stats/indices?pretty&groups=foo,bar'--------------------------------------------------
 |