nodes-hot-threads.asciidoc 768 B

123456789101112131415161718
  1. [[cluster-nodes-hot-threads]]
  2. == Nodes hot_threads
  3. An API allowing to get the current hot threads on each node in the
  4. cluster. Endpoints are `/_nodes/hot_threads`, and
  5. `/_nodes/{nodesIds}/hot_threads`.
  6. The output is plain text with a breakdown of each node's top hot
  7. threads. Parameters allowed are:
  8. [horizontal]
  9. `threads`:: number of hot threads to provide, defaults to 3.
  10. `interval`:: the interval to do the second sampling of threads.
  11. Defaults to 500ms.
  12. `type`:: The type to sample, defaults to cpu, but supports wait and
  13. block to see hot threads that are in wait or block state.
  14. `ignore_idle_threads`:: If true, known idle threads (e.g. waiting in a socket select, or to
  15. get a task from an empty queue) are filtered out. Defaults to true.