1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- [[cluster-nodes-hot-threads]]
- === Nodes hot_threads
- Returns the hot threads on each selected node in the cluster.
- [[cluster-nodes-hot-threads-api-request]]
- ==== {api-request-title}
- `GET /_nodes/hot_threads` +
- `GET /_nodes/<node_id>/hot_threads`
- [[cluster-nodes-hot-threads-api-desc]]
- ==== {api-description-title}
- This API yields a breakdown of the hot threads on each selected node in the
- cluster. The output is plain text with a breakdown of each node's top hot
- threads.
- [[cluster-nodes-hot-threads-api-path-params]]
- ==== {api-path-parms-title}
- include::{docdir}/rest-api/common-parms.asciidoc[tag=node-id]
- [[cluster-nodes-hot-threads-api-query-params]]
- ==== {api-query-parms-title}
- `ignore_idle_threads`::
- (Optional, boolean) If true, known idle threads (e.g. waiting in a socket
- select, or to get a task from an empty queue) are filtered out. Defaults to
- true.
- `interval`::
- (Optional, <<time-units, time units>>) The interval to do the second
- sampling of threads. Defaults to `500ms`.
-
- `snapshots`::
- (Optional, integer) Number of samples of thread stacktrace. Defaults to
- `10`.
- `threads`::
- (Optional, integer) Specifies the number of hot threads to provide
- information for. Defaults to `3`.
- include::{docdir}/rest-api/common-parms.asciidoc[tag=timeoutparms]
- `type`::
- (Optional, string) The type to sample. Available options are `block`, `cpu`, and
- `wait`. Defaults to `cpu`.
- [[cluster-nodes-hot-threads-api-example]]
- ==== {api-examples-title}
- [source,js]
- --------------------------------------------------
- GET /_nodes/hot_threads
- GET /_nodes/nodeId1,nodeId2/hot_threads
- --------------------------------------------------
- // CONSOLE
|