Skip to content

[DOCS] Document thread_pool node stats #50330

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Dec 18, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 34 additions & 7 deletions docs/reference/cluster/nodes-stats.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -895,6 +895,33 @@ Total number of buffer pool classes loaded since the JVM started.
(integer)
Total number of buffer pool classes unloaded since the JVM started.

[[cluster-nodes-stats-api-response-body-threadpool]]
===== `thread_pool` section

`thread_pool.<thread_pool_name>.threads`::
(integer)
Number of threads in the thread pool.

`thread_pool.<thread_pool_name>.queue`::
(integer)
Number of tasks in queue for the thread pool.

`thread_pool.<thread_pool_name>.active`::
(integer)
Number of active threads in the thread pool.

`thread_pool.<thread_pool_name>.rejected`::
(integer)
Number of tasks rejected by the thread pool executor.

`thread_pool.<thread_pool_name>.largest`::
(integer)
Highest number of active threads in the thread pool.

`thread_pool.<thread_pool_name>.completed`::
(integer)
Number of tasks completed by the thread pool executor.

[[cluster-nodes-stats-api-response-body-ingest]]
===== `ingest` section

Expand All @@ -915,31 +942,31 @@ Total number of buffer pool classes unloaded since the JVM started.
(integer)
Total number of failed ingest operations during the lifetime of this node.

`ingest.pipelines.<pipeline-id>.count`::
`ingest.pipelines.<pipeline_id>.count`::
(integer)
Number of documents preprocessed by the ingest pipeline.

`ingest.pipelines.<pipeline-id>.time_in_millis`::
`ingest.pipelines.<pipeline_id>.time_in_millis`::
(integer)
Total time spent preprocessing documents in the ingest pipeline.

`ingest.pipelines.<pipeline-id>.failed`::
`ingest.pipelines.<pipeline_id>.failed`::
(integer)
Total number of failed operations for the ingest pipeline.

`ingest.pipelines.<pipeline-id>.<processor>.count`::
`ingest.pipelines.<pipeline_id>.<processor>.count`::
(integer)
Number of documents transformed by the processor.

`ingest.pipelines.<pipeline-id>.<processor>.time_in_millis`::
`ingest.pipelines.<pipeline_id>.<processor>.time_in_millis`::
(integer)
Time spent by the processor transforming documents.

`ingest.pipelines.<pipeline-id>.<processor>.current`::
`ingest.pipelines.<pipeline_id>.<processor>.current`::
(integer)
Number of documents currently being transformed by the processor.

`ingest.pipelines.<pipeline-id>.<processor>.failed`::
`ingest.pipelines.<pipeline_id>.<processor>.failed`::
(integer)
Number of failed operations for the processor.

Expand Down