From 982df41ff869e77285040c53ef57a36d8f15d0f9 Mon Sep 17 00:00:00 2001 From: David Zane Date: Tue, 9 Jan 2024 11:11:34 -1000 Subject: [PATCH 01/13] [DOC] _nodes/stats coordinator search stats documentation Signed-off-by: David Zane --- _api-reference/nodes-apis/nodes-stats.md | 83 +++++++++++++++++++----- 1 file changed, 67 insertions(+), 16 deletions(-) diff --git a/_api-reference/nodes-apis/nodes-stats.md b/_api-reference/nodes-apis/nodes-stats.md index d620be000c..eb75ab8d89 100644 --- a/_api-reference/nodes-apis/nodes-stats.md +++ b/_api-reference/nodes-apis/nodes-stats.md @@ -186,7 +186,39 @@ Select the arrow to view the example response. "point_in_time_current": 0, "suggest_total": 0, "suggest_time_in_millis": 0, - "suggest_current": 0 + "suggest_current": 0, + "request" : { + "dfs_pre_query" : { + "time_in_millis" : 0, + "current" : 0, + "total" : 0 + }, + "query" : { + "time_in_millis" : 200, + "current" : 2, + "total" : 12 + }, + "fetch" : { + "time_in_millis" : 37, + "current" : 3, + "total" : 4 + }, + "dfs_query" : { + "time_in_millis" : 0, + "current" : 0, + "total" : 0 + }, + "expand" : { + "time_in_millis" : 9, + "current" : 1, + "total" : 0 + }, + "can_match" : { + "time_in_millis" : 0, + "current" : 0, + "total" : 0 + } + } }, "merges" : { "current" : 0, @@ -762,22 +794,41 @@ get.missing_total | Integer | The number of failed get operations. get.missing_time_in_millis | Integer | The total time for all failed get operations, in milliseconds. get.current | Integer | The number of get operations that are currently running. search | Object | Statistics about the search operations for the node. -search.point_in_time_total | Integer | The total number of Point in Time contexts that have been created (completed and active) since the node last restarted. -search.point_in_time_time_in_millis | Integer | The amount of time that Point in Time contexts have been held open since the node last restarted, in milliseconds. -search.point_in_time_current | Integer | The number of Point in Time contexts currently open. search.open_contexts | Integer | The number of open search contexts. -search.query_total | Integer | The total number of query operations. -search.query_time_in_millis | Integer | The total time for all query operations, in milliseconds. -search.query_current | Integer | The number of query operations that are currently running. -search.fetch_total | Integer | The total number of fetch operations. -search.fetch_time_in_millis | Integer | The total time for all fetch operations, in milliseconds. -search.fetch_current | Integer | The number of fetch operations that are currently running. -search.scroll_total | Integer | The total number of scroll operations. -search.scroll_time_in_millis | Integer | The total time for all scroll operations, in milliseconds. -search.scroll_current | Integer | The number of scroll operations that are currently running. -search.suggest_total | Integer | The total number of suggest operations. -search.suggest_time_in_millis | Integer | The total time for all suggest operations, in milliseconds. -search.suggest_current | Integer | The number of suggest operations that are currently running. +search.query_total | Integer | The total number of shard query operations. +search.query_time_in_millis | Integer | The total time for all shard query operations, in milliseconds. +search.query_current | Integer | The number of shard query operations that are currently running. +search.fetch_total | Integer | The total number of shard fetch operations. +search.fetch_time_in_millis | Integer | The total time for all shard fetch operations, in milliseconds. +search.fetch_current | Integer | The number of shard fetch operations that are currently running. +search.scroll_total | Integer | The total number of shard scroll operations. +search.scroll_time_in_millis | Integer | The total time for all shard scroll operations, in milliseconds. +search.scroll_current | Integer | The number of shard scroll operations that are currently running. +search.point_in_time_total | Integer | The total number of shard Point in Time contexts that have been created (completed and active) since the node last restarted. +search.point_in_time_time_in_millis | Integer | The amount of time that shard Point in Time contexts have been held open since the node last restarted, in milliseconds. +search.point_in_time_current | Integer | The number of shard Point in Time contexts currently open. +search.suggest_total | Integer | The total number of shard suggest operations. +search.suggest_time_in_millis | Integer | The total time for all shard suggest operations, in milliseconds. +search.suggest_current | Integer | The number of shard suggest operations that are currently running. +search.request | Object | Statistics about coordinator search operations for the node. +search.request.dfs_pre_query.time_in_millis | Integer | The total time for all coordinator dfs prequery operations, in milliseconds. +search.request.dfs_pre_query.current | Integer | The number of coordinator dfs prequery operations that are currently running. +search.request.dfs_pre_query.total | Integer | The total number of coordinator dfs prequery operations. +search.request.query.time_in_millis | Integer | The total time for all coordinator query operations, in milliseconds. +search.request.query.current | Integer | The number of coordinator query operations that are currently running. +search.request.query.total | Integer | The total number of coordinator query operations. +search.request.fetch.time_in_millis | Integer | The total time for all coordinator fetch operations, in milliseconds. +search.request.fetch.current | Integer | The number of coordinator fetch operations that are currently running. +search.request.fetch.total | Integer | The total number of coordinator fetch operations. +search.request.dfs_query.time_in_millis | Integer | The total time for all coordinator dfs prequery operations, in milliseconds. +search.request.dfs_query.current | Integer | The number of coordinator dfs prequery operations that are currently running. +search.request.dfs_query.total | Integer | The total number of coordinator dfs prequery operations. +search.request.expand.time_in_millis | Integer | The total time for all coordinator expand operations, in milliseconds. +search.request.expand.current | Integer | The number of coordinator expand operations that are currently running. +search.request.expand.total | Integer | The total number of coordinator expand operations. +search.request.can_match.time_in_millis | Integer | The total time for all coordinator match operations, in milliseconds. +search.request.can_match.current | Integer | The number of coordinator match operations that are currently running. +search.request.can_match.total | Integer | The total number of coordinator match operations. merges | Object | Statistics about merge operations for the node. merges.current | Integer | The number of merge operations that are currently running. merges.current_docs | Integer | The number of document merges that are currently running. From 76f475e39a13456b9be1e7297544984d813b881c Mon Sep 17 00:00:00 2001 From: Melissa Vagi Date: Wed, 10 Jan 2024 15:22:37 -0700 Subject: [PATCH 02/13] Update nodes-stats.md --- _api-reference/nodes-apis/nodes-stats.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_api-reference/nodes-apis/nodes-stats.md b/_api-reference/nodes-apis/nodes-stats.md index eb75ab8d89..0f97a00797 100644 --- a/_api-reference/nodes-apis/nodes-stats.md +++ b/_api-reference/nodes-apis/nodes-stats.md @@ -804,9 +804,9 @@ search.fetch_current | Integer | The number of shard fetch operations that are c search.scroll_total | Integer | The total number of shard scroll operations. search.scroll_time_in_millis | Integer | The total time for all shard scroll operations, in milliseconds. search.scroll_current | Integer | The number of shard scroll operations that are currently running. -search.point_in_time_total | Integer | The total number of shard Point in Time contexts that have been created (completed and active) since the node last restarted. -search.point_in_time_time_in_millis | Integer | The amount of time that shard Point in Time contexts have been held open since the node last restarted, in milliseconds. -search.point_in_time_current | Integer | The number of shard Point in Time contexts currently open. +search.point_in_time_total | Integer | The total number of shard Point in Time (PIT) contexts that have been created (completed and active) since the node last restarted. +search.point_in_time_time_in_millis | Integer | The amount of time that shard PIT contexts have been held open since the node last restarted, in milliseconds. +search.point_in_time_current | Integer | The number of shard PIT contexts currently open. search.suggest_total | Integer | The total number of shard suggest operations. search.suggest_time_in_millis | Integer | The total time for all shard suggest operations, in milliseconds. search.suggest_current | Integer | The number of shard suggest operations that are currently running. From 214597d32b1564e3608ea4be8a2b30f9d9f7d29e Mon Sep 17 00:00:00 2001 From: Melissa Vagi Date: Wed, 10 Jan 2024 15:28:33 -0700 Subject: [PATCH 03/13] Update nodes-stats.md --- _api-reference/nodes-apis/nodes-stats.md | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/_api-reference/nodes-apis/nodes-stats.md b/_api-reference/nodes-apis/nodes-stats.md index 0f97a00797..198521f4e8 100644 --- a/_api-reference/nodes-apis/nodes-stats.md +++ b/_api-reference/nodes-apis/nodes-stats.md @@ -811,18 +811,18 @@ search.suggest_total | Integer | The total number of shard suggest operations. search.suggest_time_in_millis | Integer | The total time for all shard suggest operations, in milliseconds. search.suggest_current | Integer | The number of shard suggest operations that are currently running. search.request | Object | Statistics about coordinator search operations for the node. -search.request.dfs_pre_query.time_in_millis | Integer | The total time for all coordinator dfs prequery operations, in milliseconds. -search.request.dfs_pre_query.current | Integer | The number of coordinator dfs prequery operations that are currently running. -search.request.dfs_pre_query.total | Integer | The total number of coordinator dfs prequery operations. +search.request.dfs_pre_query.time_in_millis | Integer | The total time for all coordinator depth-first search (DFS) prequery operations, in milliseconds. +search.request.dfs_pre_query.current | Integer | The number of coordinator DFS prequery operations that are currently running. +search.request.dfs_pre_query.total | Integer | The total number of coordinator DFS prequery operations. search.request.query.time_in_millis | Integer | The total time for all coordinator query operations, in milliseconds. search.request.query.current | Integer | The number of coordinator query operations that are currently running. search.request.query.total | Integer | The total number of coordinator query operations. search.request.fetch.time_in_millis | Integer | The total time for all coordinator fetch operations, in milliseconds. search.request.fetch.current | Integer | The number of coordinator fetch operations that are currently running. search.request.fetch.total | Integer | The total number of coordinator fetch operations. -search.request.dfs_query.time_in_millis | Integer | The total time for all coordinator dfs prequery operations, in milliseconds. -search.request.dfs_query.current | Integer | The number of coordinator dfs prequery operations that are currently running. -search.request.dfs_query.total | Integer | The total number of coordinator dfs prequery operations. +search.request.dfs_query.time_in_millis | Integer | The total time for all coordinator DFS prequery operations, in milliseconds. +search.request.dfs_query.current | Integer | The number of coordinator DFS prequery operations that are currently running. +search.request.dfs_query.total | Integer | The total number of coordinator DFS prequery operations. search.request.expand.time_in_millis | Integer | The total time for all coordinator expand operations, in milliseconds. search.request.expand.current | Integer | The number of coordinator expand operations that are currently running. search.request.expand.total | Integer | The total number of coordinator expand operations. @@ -930,7 +930,6 @@ recovery.current_as_source | Integer | The number of recovery operations that ha recovery.current_as_target | Integer | The number of recovery operations that have used an index shard as a target. recovery.throttle_time_in_millis | Integer | The delay of recovery operations due to throttling, in milliseconds. - ### `os` The `os` object has the OS statistics for the node and has the following properties. @@ -974,7 +973,6 @@ cpu.total_in_millis | Integer | The total CPU time used by the process on which mem | Object | Statistics about the memory for the node. mem.total_virtual_in_bytes | Integer | The total amount of virtual memory that is guaranteed to be available to the process that is currently running, in bytes. - ### `jvm` The `jvm` object contains statistics about the JVM for the node and has the following properties. From de05325709cef5ef8bf9d40140ba75d9c6cdb003 Mon Sep 17 00:00:00 2001 From: Melissa Vagi Date: Thu, 11 Jan 2024 10:59:05 -0700 Subject: [PATCH 04/13] Update _api-reference/nodes-apis/nodes-stats.md Co-authored-by: Nathan Bower Signed-off-by: Melissa Vagi --- _api-reference/nodes-apis/nodes-stats.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_api-reference/nodes-apis/nodes-stats.md b/_api-reference/nodes-apis/nodes-stats.md index 198521f4e8..08f40456bd 100644 --- a/_api-reference/nodes-apis/nodes-stats.md +++ b/_api-reference/nodes-apis/nodes-stats.md @@ -796,7 +796,7 @@ get.current | Integer | The number of get operations that are currently running. search | Object | Statistics about the search operations for the node. search.open_contexts | Integer | The number of open search contexts. search.query_total | Integer | The total number of shard query operations. -search.query_time_in_millis | Integer | The total time for all shard query operations, in milliseconds. +search.query_time_in_millis | Integer | The total amount of time for all shard query operations, in milliseconds. search.query_current | Integer | The number of shard query operations that are currently running. search.fetch_total | Integer | The total number of shard fetch operations. search.fetch_time_in_millis | Integer | The total time for all shard fetch operations, in milliseconds. From 4a228abc4e26b104b1e25cb56ab5494f15224e94 Mon Sep 17 00:00:00 2001 From: Melissa Vagi Date: Thu, 11 Jan 2024 10:59:14 -0700 Subject: [PATCH 05/13] Update _api-reference/nodes-apis/nodes-stats.md Co-authored-by: Nathan Bower Signed-off-by: Melissa Vagi --- _api-reference/nodes-apis/nodes-stats.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_api-reference/nodes-apis/nodes-stats.md b/_api-reference/nodes-apis/nodes-stats.md index 08f40456bd..993739b41d 100644 --- a/_api-reference/nodes-apis/nodes-stats.md +++ b/_api-reference/nodes-apis/nodes-stats.md @@ -799,7 +799,7 @@ search.query_total | Integer | The total number of shard query operations. search.query_time_in_millis | Integer | The total amount of time for all shard query operations, in milliseconds. search.query_current | Integer | The number of shard query operations that are currently running. search.fetch_total | Integer | The total number of shard fetch operations. -search.fetch_time_in_millis | Integer | The total time for all shard fetch operations, in milliseconds. +search.fetch_time_in_millis | Integer | The total amount of time for all shard fetch operations, in milliseconds. search.fetch_current | Integer | The number of shard fetch operations that are currently running. search.scroll_total | Integer | The total number of shard scroll operations. search.scroll_time_in_millis | Integer | The total time for all shard scroll operations, in milliseconds. From cb14987f2eb3e2b3615705c8ee4753bee9184ec6 Mon Sep 17 00:00:00 2001 From: Melissa Vagi Date: Thu, 11 Jan 2024 10:59:39 -0700 Subject: [PATCH 06/13] Update _api-reference/nodes-apis/nodes-stats.md Co-authored-by: Nathan Bower Signed-off-by: Melissa Vagi --- _api-reference/nodes-apis/nodes-stats.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_api-reference/nodes-apis/nodes-stats.md b/_api-reference/nodes-apis/nodes-stats.md index 993739b41d..a366e82773 100644 --- a/_api-reference/nodes-apis/nodes-stats.md +++ b/_api-reference/nodes-apis/nodes-stats.md @@ -802,7 +802,7 @@ search.fetch_total | Integer | The total number of shard fetch operations. search.fetch_time_in_millis | Integer | The total amount of time for all shard fetch operations, in milliseconds. search.fetch_current | Integer | The number of shard fetch operations that are currently running. search.scroll_total | Integer | The total number of shard scroll operations. -search.scroll_time_in_millis | Integer | The total time for all shard scroll operations, in milliseconds. +search.scroll_time_in_millis | Integer | The total amount of time for all shard scroll operations, in milliseconds. search.scroll_current | Integer | The number of shard scroll operations that are currently running. search.point_in_time_total | Integer | The total number of shard Point in Time (PIT) contexts that have been created (completed and active) since the node last restarted. search.point_in_time_time_in_millis | Integer | The amount of time that shard PIT contexts have been held open since the node last restarted, in milliseconds. From 7af138ec800bcbde2db4b38318137fbc854f1eee Mon Sep 17 00:00:00 2001 From: Melissa Vagi Date: Thu, 11 Jan 2024 10:59:48 -0700 Subject: [PATCH 07/13] Update _api-reference/nodes-apis/nodes-stats.md Co-authored-by: Nathan Bower Signed-off-by: Melissa Vagi --- _api-reference/nodes-apis/nodes-stats.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_api-reference/nodes-apis/nodes-stats.md b/_api-reference/nodes-apis/nodes-stats.md index a366e82773..44aa6d7c58 100644 --- a/_api-reference/nodes-apis/nodes-stats.md +++ b/_api-reference/nodes-apis/nodes-stats.md @@ -808,7 +808,7 @@ search.point_in_time_total | Integer | The total number of shard Point in Time ( search.point_in_time_time_in_millis | Integer | The amount of time that shard PIT contexts have been held open since the node last restarted, in milliseconds. search.point_in_time_current | Integer | The number of shard PIT contexts currently open. search.suggest_total | Integer | The total number of shard suggest operations. -search.suggest_time_in_millis | Integer | The total time for all shard suggest operations, in milliseconds. +search.suggest_time_in_millis | Integer | The total amount of time for all shard suggest operations, in milliseconds. search.suggest_current | Integer | The number of shard suggest operations that are currently running. search.request | Object | Statistics about coordinator search operations for the node. search.request.dfs_pre_query.time_in_millis | Integer | The total time for all coordinator depth-first search (DFS) prequery operations, in milliseconds. From 7d505f9f68d476d524f76d98e180fd2a14773098 Mon Sep 17 00:00:00 2001 From: Melissa Vagi Date: Thu, 11 Jan 2024 10:59:59 -0700 Subject: [PATCH 08/13] Update _api-reference/nodes-apis/nodes-stats.md Co-authored-by: Nathan Bower Signed-off-by: Melissa Vagi --- _api-reference/nodes-apis/nodes-stats.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_api-reference/nodes-apis/nodes-stats.md b/_api-reference/nodes-apis/nodes-stats.md index 44aa6d7c58..d192d91029 100644 --- a/_api-reference/nodes-apis/nodes-stats.md +++ b/_api-reference/nodes-apis/nodes-stats.md @@ -811,7 +811,7 @@ search.suggest_total | Integer | The total number of shard suggest operations. search.suggest_time_in_millis | Integer | The total amount of time for all shard suggest operations, in milliseconds. search.suggest_current | Integer | The number of shard suggest operations that are currently running. search.request | Object | Statistics about coordinator search operations for the node. -search.request.dfs_pre_query.time_in_millis | Integer | The total time for all coordinator depth-first search (DFS) prequery operations, in milliseconds. +search.request.dfs_pre_query.time_in_millis | Integer | The total amount of time for all coordinator depth-first search (DFS) prequery operations, in milliseconds. search.request.dfs_pre_query.current | Integer | The number of coordinator DFS prequery operations that are currently running. search.request.dfs_pre_query.total | Integer | The total number of coordinator DFS prequery operations. search.request.query.time_in_millis | Integer | The total time for all coordinator query operations, in milliseconds. From a89ab0ae89502f1a9f2afe6375ff8a74626816da Mon Sep 17 00:00:00 2001 From: Melissa Vagi Date: Thu, 11 Jan 2024 11:00:09 -0700 Subject: [PATCH 09/13] Update _api-reference/nodes-apis/nodes-stats.md Co-authored-by: Nathan Bower Signed-off-by: Melissa Vagi --- _api-reference/nodes-apis/nodes-stats.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_api-reference/nodes-apis/nodes-stats.md b/_api-reference/nodes-apis/nodes-stats.md index d192d91029..ce32c563c5 100644 --- a/_api-reference/nodes-apis/nodes-stats.md +++ b/_api-reference/nodes-apis/nodes-stats.md @@ -817,7 +817,7 @@ search.request.dfs_pre_query.total | Integer | The total number of coordinator D search.request.query.time_in_millis | Integer | The total time for all coordinator query operations, in milliseconds. search.request.query.current | Integer | The number of coordinator query operations that are currently running. search.request.query.total | Integer | The total number of coordinator query operations. -search.request.fetch.time_in_millis | Integer | The total time for all coordinator fetch operations, in milliseconds. +search.request.fetch.time_in_millis | Integer | The total amount of time for all coordinator fetch operations, in milliseconds. search.request.fetch.current | Integer | The number of coordinator fetch operations that are currently running. search.request.fetch.total | Integer | The total number of coordinator fetch operations. search.request.dfs_query.time_in_millis | Integer | The total time for all coordinator DFS prequery operations, in milliseconds. From 4b1868c7797252189ce976b14c6ab1c0e0f3372c Mon Sep 17 00:00:00 2001 From: Melissa Vagi Date: Thu, 11 Jan 2024 11:00:18 -0700 Subject: [PATCH 10/13] Update _api-reference/nodes-apis/nodes-stats.md Co-authored-by: Nathan Bower Signed-off-by: Melissa Vagi --- _api-reference/nodes-apis/nodes-stats.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_api-reference/nodes-apis/nodes-stats.md b/_api-reference/nodes-apis/nodes-stats.md index ce32c563c5..2755beecdc 100644 --- a/_api-reference/nodes-apis/nodes-stats.md +++ b/_api-reference/nodes-apis/nodes-stats.md @@ -814,7 +814,7 @@ search.request | Object | Statistics about coordinator search operations for the search.request.dfs_pre_query.time_in_millis | Integer | The total amount of time for all coordinator depth-first search (DFS) prequery operations, in milliseconds. search.request.dfs_pre_query.current | Integer | The number of coordinator DFS prequery operations that are currently running. search.request.dfs_pre_query.total | Integer | The total number of coordinator DFS prequery operations. -search.request.query.time_in_millis | Integer | The total time for all coordinator query operations, in milliseconds. +search.request.query.time_in_millis | Integer | The total amount of time for all coordinator query operations, in milliseconds. search.request.query.current | Integer | The number of coordinator query operations that are currently running. search.request.query.total | Integer | The total number of coordinator query operations. search.request.fetch.time_in_millis | Integer | The total amount of time for all coordinator fetch operations, in milliseconds. From 33f2cb70b1279b2d400bfb29d0596b4ad03297c5 Mon Sep 17 00:00:00 2001 From: Melissa Vagi Date: Thu, 11 Jan 2024 11:00:27 -0700 Subject: [PATCH 11/13] Update _api-reference/nodes-apis/nodes-stats.md Co-authored-by: Nathan Bower Signed-off-by: Melissa Vagi --- _api-reference/nodes-apis/nodes-stats.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_api-reference/nodes-apis/nodes-stats.md b/_api-reference/nodes-apis/nodes-stats.md index 2755beecdc..f5928642be 100644 --- a/_api-reference/nodes-apis/nodes-stats.md +++ b/_api-reference/nodes-apis/nodes-stats.md @@ -820,7 +820,7 @@ search.request.query.total | Integer | The total number of coordinator query ope search.request.fetch.time_in_millis | Integer | The total amount of time for all coordinator fetch operations, in milliseconds. search.request.fetch.current | Integer | The number of coordinator fetch operations that are currently running. search.request.fetch.total | Integer | The total number of coordinator fetch operations. -search.request.dfs_query.time_in_millis | Integer | The total time for all coordinator DFS prequery operations, in milliseconds. +search.request.dfs_query.time_in_millis | Integer | The total amount of time for all coordinator DFS prequery operations, in milliseconds. search.request.dfs_query.current | Integer | The number of coordinator DFS prequery operations that are currently running. search.request.dfs_query.total | Integer | The total number of coordinator DFS prequery operations. search.request.expand.time_in_millis | Integer | The total time for all coordinator expand operations, in milliseconds. From c9ab38b4bb783fb4b7786b97f3b14cbe829d0836 Mon Sep 17 00:00:00 2001 From: Melissa Vagi Date: Thu, 11 Jan 2024 11:00:34 -0700 Subject: [PATCH 12/13] Update _api-reference/nodes-apis/nodes-stats.md Co-authored-by: Nathan Bower Signed-off-by: Melissa Vagi --- _api-reference/nodes-apis/nodes-stats.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_api-reference/nodes-apis/nodes-stats.md b/_api-reference/nodes-apis/nodes-stats.md index f5928642be..7a80d77b8a 100644 --- a/_api-reference/nodes-apis/nodes-stats.md +++ b/_api-reference/nodes-apis/nodes-stats.md @@ -823,7 +823,7 @@ search.request.fetch.total | Integer | The total number of coordinator fetch ope search.request.dfs_query.time_in_millis | Integer | The total amount of time for all coordinator DFS prequery operations, in milliseconds. search.request.dfs_query.current | Integer | The number of coordinator DFS prequery operations that are currently running. search.request.dfs_query.total | Integer | The total number of coordinator DFS prequery operations. -search.request.expand.time_in_millis | Integer | The total time for all coordinator expand operations, in milliseconds. +search.request.expand.time_in_millis | Integer | The total amount of time for all coordinator expand operations, in milliseconds. search.request.expand.current | Integer | The number of coordinator expand operations that are currently running. search.request.expand.total | Integer | The total number of coordinator expand operations. search.request.can_match.time_in_millis | Integer | The total time for all coordinator match operations, in milliseconds. From 16713e680379baa0cde41a1c5601932f3341bf3d Mon Sep 17 00:00:00 2001 From: Melissa Vagi Date: Thu, 11 Jan 2024 11:00:42 -0700 Subject: [PATCH 13/13] Update _api-reference/nodes-apis/nodes-stats.md Co-authored-by: Nathan Bower Signed-off-by: Melissa Vagi --- _api-reference/nodes-apis/nodes-stats.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_api-reference/nodes-apis/nodes-stats.md b/_api-reference/nodes-apis/nodes-stats.md index 7a80d77b8a..79e692f31b 100644 --- a/_api-reference/nodes-apis/nodes-stats.md +++ b/_api-reference/nodes-apis/nodes-stats.md @@ -826,7 +826,7 @@ search.request.dfs_query.total | Integer | The total number of coordinator DFS p search.request.expand.time_in_millis | Integer | The total amount of time for all coordinator expand operations, in milliseconds. search.request.expand.current | Integer | The number of coordinator expand operations that are currently running. search.request.expand.total | Integer | The total number of coordinator expand operations. -search.request.can_match.time_in_millis | Integer | The total time for all coordinator match operations, in milliseconds. +search.request.can_match.time_in_millis | Integer | The total amount of time for all coordinator match operations, in milliseconds. search.request.can_match.current | Integer | The number of coordinator match operations that are currently running. search.request.can_match.total | Integer | The total number of coordinator match operations. merges | Object | Statistics about merge operations for the node.