2013-08-28 19:24:34 -04:00
|
|
|
[[cluster-nodes-stats]]
|
|
|
|
== Nodes Stats
|
|
|
|
|
|
|
|
[float]
|
|
|
|
=== Nodes statistics
|
|
|
|
|
|
|
|
The cluster nodes stats API allows to retrieve one or more (or all) of
|
|
|
|
the 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. The
|
|
|
|
second command selectively retrieves nodes stats of only `nodeId1` and
|
|
|
|
`nodeId2`. All the nodes selective options are explained
|
|
|
|
<<cluster-nodes,here>>.
|
|
|
|
|
2014-01-06 02:33:32 -05:00
|
|
|
By default, all stats are returned. You can limit this by combining any
|
2015-07-06 10:52:53 -04:00
|
|
|
of `indices`, `os`, `process`, `jvm`, `transport`, `http`,
|
2014-01-06 02:33:32 -05:00
|
|
|
`fs`, `breaker` and `thread_pool`. For example:
|
2013-08-28 19:24:34 -04:00
|
|
|
|
|
|
|
[horizontal]
|
2015-07-06 03:37:11 -04:00
|
|
|
`indices`::
|
2013-08-28 19:24:34 -04:00
|
|
|
Indices stats about size, document count, indexing and
|
2015-01-11 05:52:43 -05:00
|
|
|
deletion times, search times, field cache size, merges and flushes
|
2013-08-28 19:24:34 -04:00
|
|
|
|
2015-07-06 03:37:11 -04:00
|
|
|
`fs`::
|
2013-08-28 19:24:34 -04:00
|
|
|
File system information, data path, free disk space, read/write
|
2015-07-08 03:29:21 -04:00
|
|
|
stats (see <<fs-info,FS information>>)
|
2013-08-28 19:24:34 -04:00
|
|
|
|
2015-07-06 03:37:11 -04:00
|
|
|
`http`::
|
2013-08-28 19:24:34 -04:00
|
|
|
HTTP connection information
|
|
|
|
|
2015-07-06 03:37:11 -04:00
|
|
|
`jvm`::
|
2013-08-28 19:24:34 -04:00
|
|
|
JVM stats, memory pool information, garbage collection, buffer
|
2015-08-10 04:57:24 -04:00
|
|
|
pools, number of loaded/unloaded classes
|
2013-08-28 19:24:34 -04:00
|
|
|
|
2015-07-06 03:37:11 -04:00
|
|
|
`os`::
|
2015-08-31 11:03:45 -04:00
|
|
|
Operating system stats, load average, mem, swap
|
2015-07-06 08:22:01 -04:00
|
|
|
(see <<os-stats,OS statistics>>)
|
2013-08-28 19:24:34 -04:00
|
|
|
|
2015-07-06 03:37:11 -04:00
|
|
|
`process`::
|
2013-08-28 19:24:34 -04:00
|
|
|
Process statistics, memory consumption, cpu usage, open
|
2015-07-06 03:37:11 -04:00
|
|
|
file descriptors (see <<process-stats,Process statistics>>)
|
2013-08-28 19:24:34 -04:00
|
|
|
|
2015-07-06 03:37:11 -04:00
|
|
|
`thread_pool`::
|
2013-08-28 19:24:34 -04:00
|
|
|
Statistics about each thread pool, including current
|
|
|
|
size, queue and rejected tasks
|
|
|
|
|
2015-07-06 03:37:11 -04:00
|
|
|
`transport`::
|
2013-08-28 19:24:34 -04:00
|
|
|
Transport statistics about sent and received bytes in
|
|
|
|
cluster communication
|
|
|
|
|
2014-01-02 17:04:47 -05:00
|
|
|
`breaker`::
|
|
|
|
Statistics about the field data circuit breaker
|
|
|
|
|
2015-09-20 14:20:02 -04:00
|
|
|
`discovery`::
|
|
|
|
Statistics about the discovery
|
|
|
|
|
2016-03-02 11:57:45 -05:00
|
|
|
`ingest`::
|
|
|
|
Statistics about ingest preprocessing
|
|
|
|
|
2013-08-28 19:24:34 -04:00
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
# return indices and os
|
2014-01-06 02:33:32 -05:00
|
|
|
curl -XGET 'http://localhost:9200/_nodes/stats/os'
|
2013-08-28 19:24:34 -04:00
|
|
|
# return just os and process
|
2014-01-06 02:33:32 -05:00
|
|
|
curl -XGET 'http://localhost:9200/_nodes/stats/os,process'
|
2013-08-28 19:24:34 -04:00
|
|
|
# specific type endpoint
|
|
|
|
curl -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.
|
|
|
|
|
2015-07-08 03:29:21 -04:00
|
|
|
[float]
|
|
|
|
[[fs-info]]
|
|
|
|
==== FS information
|
2015-07-06 08:43:58 -04:00
|
|
|
|
|
|
|
The `fs` flag can be set to retrieve
|
2015-07-08 03:29:21 -04:00
|
|
|
information that concern the file system:
|
2015-07-06 08:43:58 -04:00
|
|
|
|
|
|
|
`fs.timestamp`::
|
|
|
|
Last time the file stores statistics have been refreshed
|
|
|
|
|
2015-07-06 08:22:01 -04:00
|
|
|
`fs.total.total_in_bytes`::
|
2015-07-06 08:43:58 -04:00
|
|
|
Total size (in bytes) of all file stores
|
|
|
|
|
2015-07-06 08:22:01 -04:00
|
|
|
`fs.total.free_in_bytes`::
|
2015-07-06 08:43:58 -04:00
|
|
|
Total number of unallocated bytes in all file stores
|
|
|
|
|
2015-07-06 08:22:01 -04:00
|
|
|
`fs.total.available_in_bytes`::
|
|
|
|
Total number of bytes available to this Java virtual machine on all file stores
|
2015-07-06 08:43:58 -04:00
|
|
|
|
2015-07-06 08:22:01 -04:00
|
|
|
`fs.data`::
|
2015-07-06 08:43:58 -04:00
|
|
|
List of all file stores
|
|
|
|
|
2015-07-06 08:22:01 -04:00
|
|
|
`fs.data.path`::
|
2015-07-06 08:43:58 -04:00
|
|
|
Path to the file store
|
|
|
|
|
2015-07-06 08:22:01 -04:00
|
|
|
`fs.data.mount`::
|
2015-07-06 08:43:58 -04:00
|
|
|
Mount point of the file store (ex: /dev/sda2)
|
|
|
|
|
2015-07-06 08:22:01 -04:00
|
|
|
`fs.data.type`::
|
2015-07-06 08:43:58 -04:00
|
|
|
Type of the file store (ex: ext4)
|
|
|
|
|
2015-07-06 08:22:01 -04:00
|
|
|
`fs.data.total_in_bytes`::
|
|
|
|
Total size (in bytes) of the file store
|
2015-07-06 08:43:58 -04:00
|
|
|
|
2015-07-06 08:22:01 -04:00
|
|
|
`fs.data.free_in_bytes`::
|
2015-07-06 08:43:58 -04:00
|
|
|
Total number of unallocated bytes in the file store
|
|
|
|
|
2015-07-06 08:22:01 -04:00
|
|
|
`fs.data.available_in_bytes`::
|
|
|
|
Total number of bytes available to this Java virtual machine on this file store
|
2015-07-06 08:43:58 -04:00
|
|
|
|
2015-07-06 08:22:01 -04:00
|
|
|
`fs.data.spins` (Linux only)::
|
2015-07-06 08:43:58 -04:00
|
|
|
Indicates if the file store is backed by spinning storage.
|
|
|
|
`null` means we could not determine it, `true` means the device possibly spins
|
|
|
|
and `false` means it does not (ex: solid-state disks).
|
|
|
|
|
2016-05-17 16:16:39 -04:00
|
|
|
`fs.io_stats.devices` (Linux only)::
|
|
|
|
Array of disk metrics for each device that is backing an
|
|
|
|
Elasticsearch data path. These disk metrics are probed periodically
|
|
|
|
and averages between the last probe and the current probe are
|
|
|
|
computed.
|
|
|
|
|
|
|
|
`fs.io_stats.devices.device_name` (Linux only)::
|
|
|
|
The Linux device name.
|
|
|
|
|
|
|
|
`fs.io_stats.devices.operations` (Linux only)::
|
|
|
|
The total number of read and write operations for the device
|
|
|
|
completed since starting Elasticsearch.
|
|
|
|
|
|
|
|
`fs.io_stats.devices.read_operations` (Linux only)::
|
|
|
|
The total number of read operations for the device completed since
|
|
|
|
starting Elasticsearch.
|
|
|
|
|
|
|
|
`fs.io_stats.devices.write_operations` (Linux only)::
|
|
|
|
The total number of write operations for the device completed since
|
|
|
|
starting Elasticsearch.
|
|
|
|
|
|
|
|
`fs.io_stats.devices.read_kilobytes` (Linux only)::
|
|
|
|
The total number of kilobytes read for the device since starting
|
|
|
|
Elasticsearch.
|
|
|
|
|
|
|
|
`fs.io_stats.devices.write_kilobytes` (Linux only)::
|
|
|
|
The total number of kilobytes written for the device since
|
|
|
|
starting Elasticsearch.
|
|
|
|
|
|
|
|
`fs.io_stats.operations` (Linux only)::
|
|
|
|
The total number of read and write operations across all devices
|
|
|
|
used by Elasticsearch completed since starting Elasticsearch.
|
|
|
|
|
|
|
|
`fs.io_stats.read_operations` (Linux only)::
|
|
|
|
The total number of read operations for across all devices used by
|
|
|
|
Elasticsearch completed since starting Elasticsearch.
|
|
|
|
|
|
|
|
`fs.io_stats.write_operations` (Linux only)::
|
|
|
|
The total number of write operations across all devices used by
|
|
|
|
Elasticsearch completed since starting Elasticsearch.
|
|
|
|
|
|
|
|
`fs.io_stats.read_kilobytes` (Linux only)::
|
|
|
|
The total number of kilobytes read across all devices used by
|
|
|
|
Elasticsearch since starting Elasticsearch.
|
|
|
|
|
|
|
|
`fs.io_stats.write_kilobytes` (Linux only)::
|
|
|
|
The total number of kilobytes written across all devices used by
|
|
|
|
Elasticsearch since starting Elasticsearch.
|
|
|
|
|
2015-07-06 08:22:01 -04:00
|
|
|
[float]
|
|
|
|
[[os-stats]]
|
|
|
|
==== Operating System statistics
|
|
|
|
|
|
|
|
The `os` flag can be set to retrieve statistics that concern
|
|
|
|
the operating system:
|
|
|
|
|
|
|
|
`os.timestamp`::
|
|
|
|
Last time the operating system statistics have been refreshed
|
|
|
|
|
2015-11-13 09:18:21 -05:00
|
|
|
`os.cpu.percent`::
|
|
|
|
Recent CPU usage for the whole system, or -1 if not supported
|
|
|
|
|
2016-01-12 11:11:28 -05:00
|
|
|
`os.cpu.load_average.1m`::
|
|
|
|
One-minute load average on the system (field is not present if
|
|
|
|
one-minute load average is not available)
|
|
|
|
`os.cpu.load_average.5m`::
|
|
|
|
Five-minute load average on the system (field is not present if
|
|
|
|
five-minute load average is not available)
|
|
|
|
`os.cpu.load_average.15m`::
|
|
|
|
Fifteen-minute load average on the system (field is not present if
|
|
|
|
fifteen-minute load average is not available)
|
2015-07-06 08:22:01 -04:00
|
|
|
|
|
|
|
`os.mem.total_in_bytes`::
|
|
|
|
Total amount of physical memory in bytes
|
|
|
|
|
|
|
|
`os.mem.free_in_bytes`::
|
|
|
|
Amount of free physical memory in bytes
|
|
|
|
|
|
|
|
`os.mem.free_percent`::
|
|
|
|
Percentage of free memory
|
|
|
|
|
|
|
|
`os.mem.used_in_bytes`::
|
|
|
|
Amount of used physical memory in bytes
|
|
|
|
|
|
|
|
`os.mem.used_percent`::
|
|
|
|
Percentage of used memory
|
|
|
|
|
|
|
|
`os.swap.total_in_bytes`::
|
|
|
|
Total amount of swap space in bytes
|
|
|
|
|
|
|
|
`os.swap.free_in_bytes`::
|
|
|
|
Amount of free swap space in bytes
|
|
|
|
|
|
|
|
`os.swap.used_in_bytes`::
|
|
|
|
Amount of used swap space in bytes
|
|
|
|
|
|
|
|
|
2015-07-06 03:37:11 -04:00
|
|
|
[float]
|
|
|
|
[[process-stats]]
|
|
|
|
==== Process statistics
|
|
|
|
|
|
|
|
The `process` flag can be set to retrieve statistics that concern
|
|
|
|
the current running process:
|
|
|
|
|
|
|
|
`process.timestamp`::
|
|
|
|
Last time the process statistics have been refreshed
|
|
|
|
|
|
|
|
`process.open_file_descriptors`::
|
|
|
|
Number of opened file descriptors associated with the current process, or -1 if not supported
|
|
|
|
|
|
|
|
`process.max_file_descriptors`::
|
|
|
|
Maximum number of file descriptors allowed on the system, or -1 if not supported
|
|
|
|
|
|
|
|
`process.cpu.percent`::
|
2015-08-17 06:22:24 -04:00
|
|
|
CPU usage in percent, or -1 if not known at the time the stats are computed
|
2015-07-06 03:37:11 -04:00
|
|
|
|
|
|
|
`process.cpu.total_in_millis`::
|
|
|
|
CPU time (in milliseconds) used by the process on which the Java virtual machine is running, or -1 if not supported
|
|
|
|
|
|
|
|
`process.mem.total_virtual_in_bytes`::
|
|
|
|
Size in bytes of virtual memory that is guaranteed to be available to the running process
|
|
|
|
|
2015-07-06 08:43:58 -04:00
|
|
|
|
2013-08-28 19:24:34 -04:00
|
|
|
[float]
|
2013-09-25 12:17:40 -04:00
|
|
|
[[field-data]]
|
2013-08-28 19:24:34 -04:00
|
|
|
=== Field data statistics
|
|
|
|
|
2013-09-03 15:27:49 -04:00
|
|
|
You can get information about field data memory usage on node
|
2013-08-28 19:24:34 -04:00
|
|
|
level or on index level.
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
# Node Stats
|
2014-12-31 05:54:07 -05:00
|
|
|
curl -XGET 'http://localhost:9200/_nodes/stats/indices/?fields=field1,field2&pretty'
|
2013-08-28 19:24:34 -04:00
|
|
|
|
|
|
|
# Indices Stat
|
2014-12-31 05:54:07 -05:00
|
|
|
curl -XGET 'http://localhost:9200/_stats/fielddata/?fields=field1,field2&pretty'
|
2013-08-28 19:24:34 -04:00
|
|
|
|
|
|
|
# You can use wildcards for field names
|
2014-12-31 05:54:07 -05:00
|
|
|
curl -XGET 'http://localhost:9200/_stats/fielddata/?fields=field*&pretty'
|
|
|
|
curl -XGET 'http://localhost:9200/_nodes/stats/indices/?fields=field*&pretty'
|
2013-08-28 19:24:34 -04:00
|
|
|
--------------------------------------------------
|
2014-03-05 15:02:14 -05:00
|
|
|
|
|
|
|
[float]
|
|
|
|
[[search-groups]]
|
|
|
|
=== Search groups
|
|
|
|
|
|
|
|
You can get statistics about search groups for searches executed
|
|
|
|
on this node.
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
# All groups with all stats
|
2014-12-31 05:54:07 -05:00
|
|
|
curl -XGET 'http://localhost:9200/_nodes/stats?pretty&groups=_all'
|
2014-03-05 15:02:14 -05:00
|
|
|
|
|
|
|
# Some groups from just the indices stats
|
2014-12-31 05:54:07 -05:00
|
|
|
curl -XGET 'http://localhost:9200/_nodes/stats/indices?pretty&groups=foo,bar'
|
2014-03-05 15:02:14 -05:00
|
|
|
--------------------------------------------------
|
2016-03-02 11:57:45 -05:00
|
|
|
|
|
|
|
[float]
|
|
|
|
[[ingest-stats]]
|
|
|
|
=== Ingest statistics
|
|
|
|
|
|
|
|
The `ingest` flag can be set to retrieve statistics that concern ingest:
|
|
|
|
|
|
|
|
`ingest.total.count`::
|
|
|
|
The total number of document ingested during the lifetime of this node
|
|
|
|
|
|
|
|
`ingest.total.time_in_millis`::
|
|
|
|
The total time spent on ingest preprocessing documents during the lifetime of this node
|
|
|
|
|
|
|
|
`ingest.total.current`::
|
|
|
|
The total number of documents currently being ingested.
|
|
|
|
|
|
|
|
`ingest.total.failed`::
|
|
|
|
The total number ingest preprocessing operations failed during the lifetime of this node
|
|
|
|
|
|
|
|
On top of these overall ingest statistics, these statistics are also provided on a per pipeline basis.
|