原英文版地址: https://www.elastic.co/guide/en/elasticsearch/reference/7.7/cluster-nodes-hot-threads.html, 原文档版权归 www.elastic.co 所有
本地英文版地址: ../en/cluster-nodes-hot-threads.html
本地英文版地址: ../en/cluster-nodes-hot-threads.html
重要: 此版本不会发布额外的bug修复或文档更新。最新信息请参考 当前版本文档。
Nodes hot threads APIedit
Returns the hot threads on each selected node in the cluster.
Descriptionedit
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.
Path parametersedit
-
<node_id>
- (Optional, string) Comma-separated list of node IDs or names used to limit returned information.
Query parametersedit
-
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) 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
. -
master_timeout
-
(Optional, time units) Specifies the period of time to wait for
a connection to the master node. If no response is received before the timeout
expires, the request fails and returns an error. Defaults to
30s
. -
timeout
-
(Optional, time units) Specifies the period of time to wait for
a response. If no response is received before the timeout expires, the request
fails and returns an error. Defaults to
30s
. -
type
-
(Optional, string) The type to sample. Available options are
block
,cpu
, andwait
. Defaults tocpu
.
Examplesedit
GET /_nodes/hot_threads GET /_nodes/nodeId1,nodeId2/hot_threads