Skip to content

Commit b8a62ce

Browse files
authored
[DOCS] Document thread_pool node stats (#50330)
1 parent 976269b commit b8a62ce

File tree

1 file changed

+34
-7
lines changed

1 file changed

+34
-7
lines changed

docs/reference/cluster/nodes-stats.asciidoc

+34-7
Original file line numberDiff line numberDiff line change
@@ -895,6 +895,33 @@ Total number of buffer pool classes loaded since the JVM started.
895895
(integer)
896896
Total number of buffer pool classes unloaded since the JVM started.
897897

898+
[[cluster-nodes-stats-api-response-body-threadpool]]
899+
===== `thread_pool` section
900+
901+
`thread_pool.<thread_pool_name>.threads`::
902+
(integer)
903+
Number of threads in the thread pool.
904+
905+
`thread_pool.<thread_pool_name>.queue`::
906+
(integer)
907+
Number of tasks in queue for the thread pool.
908+
909+
`thread_pool.<thread_pool_name>.active`::
910+
(integer)
911+
Number of active threads in the thread pool.
912+
913+
`thread_pool.<thread_pool_name>.rejected`::
914+
(integer)
915+
Number of tasks rejected by the thread pool executor.
916+
917+
`thread_pool.<thread_pool_name>.largest`::
918+
(integer)
919+
Highest number of active threads in the thread pool.
920+
921+
`thread_pool.<thread_pool_name>.completed`::
922+
(integer)
923+
Number of tasks completed by the thread pool executor.
924+
898925
[[cluster-nodes-stats-api-response-body-ingest]]
899926
===== `ingest` section
900927

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

918-
`ingest.pipelines.<pipeline-id>.count`::
945+
`ingest.pipelines.<pipeline_id>.count`::
919946
(integer)
920947
Number of documents preprocessed by the ingest pipeline.
921948

922-
`ingest.pipelines.<pipeline-id>.time_in_millis`::
949+
`ingest.pipelines.<pipeline_id>.time_in_millis`::
923950
(integer)
924951
Total time spent preprocessing documents in the ingest pipeline.
925952

926-
`ingest.pipelines.<pipeline-id>.failed`::
953+
`ingest.pipelines.<pipeline_id>.failed`::
927954
(integer)
928955
Total number of failed operations for the ingest pipeline.
929956

930-
`ingest.pipelines.<pipeline-id>.<processor>.count`::
957+
`ingest.pipelines.<pipeline_id>.<processor>.count`::
931958
(integer)
932959
Number of documents transformed by the processor.
933960

934-
`ingest.pipelines.<pipeline-id>.<processor>.time_in_millis`::
961+
`ingest.pipelines.<pipeline_id>.<processor>.time_in_millis`::
935962
(integer)
936963
Time spent by the processor transforming documents.
937964

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

942-
`ingest.pipelines.<pipeline-id>.<processor>.failed`::
969+
`ingest.pipelines.<pipeline_id>.<processor>.failed`::
943970
(integer)
944971
Number of failed operations for the processor.
945972

0 commit comments

Comments
 (0)