Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,10 @@
},
"metric": {
"type": "list",
"options": [
"_all",
"blocks",
"metadata",
"nodes",
"none",
"routing_table",
"master_node",
"version"
],
"default": "all",
"deprecated": {
"version": "8.6.0",
"description": "This parameter has no effect; its use will be forbidden in a future version."
},
"description": "Limit the information returned to the specified metrics. Defaults to all but metadata"
},
"master_timeout": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"options": [
"_all",
"blocks",
"customs",
"metadata",
"nodes",
"routing_table",
Expand All @@ -56,6 +57,7 @@
"options": [
"_all",
"blocks",
"customs",
"metadata",
"nodes",
"routing_table",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,20 @@
"flush",
"get",
"indexing",
"mappings",
"merge",
"recovery",
"request_cache",
"refresh",
"search",
"segments",
"shard_stats",
"store",
"translog",
"warmer",
"bulk"
"bulk",
"dense_vector",
"sparse_vector"
],
"description": "Limit the information returned the specific metrics."
}
Expand Down Expand Up @@ -82,14 +88,20 @@
"flush",
"get",
"indexing",
"mappings",
"merge",
"recovery",
"request_cache",
"refresh",
"search",
"segments",
"shard_stats",
"store",
"translog",
"warmer",
"bulk"
"bulk",
"dense_vector",
"sparse_vector"
],
"description": "Limit the information returned the specific metrics."
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,12 @@
"metric": {
"type": "list",
"options": [
"_all",
"_none",
"settings",
"os",
"process",
"remote_cluster_server",
"jvm",
"thread_pool",
"transport",
Expand All @@ -69,19 +72,20 @@
"metric": {
"type": "list",
"options": [
"_all",
"_none",
"settings",
"os",
"process",
"remote_cluster_server",
"jvm",
"thread_pool",
"transport",
"http",
"plugins",
"ingest",
"indices",
"aggregations",
"_all",
"_none"
"aggregations"
],
"description": "A comma-separated list of metrics you wish returned. Use `_all` to retrieve all metrics and `_none` to retrieve the node identity without any additional metrics."
}
Expand Down
64 changes: 50 additions & 14 deletions rest-api-spec/src/main/resources/rest-api-spec/api/nodes.stats.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,18 +41,24 @@
"type": "list",
"options": [
"_all",
"_none",
"adaptive_selection",
"allocations",
"breaker",
"discovery",
"fs",
"http",
"indexing_pressure",
"indices",
"ingest",
"jvm",
"os",
"process",
"repositories",
"script",
"script_cache",
"thread_pool",
"transport",
"discovery",
"indexing_pressure"
"transport"
],
"description": "Limit the information returned to the specified metrics"
}
Expand All @@ -68,18 +74,24 @@
"type": "list",
"options": [
"_all",
"_none",
"adaptive_selection",
"allocations",
"breaker",
"discovery",
"fs",
"http",
"indexing_pressure",
"indices",
"ingest",
"jvm",
"os",
"process",
"repositories",
"script",
"script_cache",
"thread_pool",
"transport",
"discovery",
"indexing_pressure"
"transport"
],
"description": "Limit the information returned to the specified metrics"
},
Expand All @@ -99,17 +111,24 @@
"type": "list",
"options": [
"_all",
"_none",
"adaptive_selection",
"allocations",
"breaker",
"discovery",
"fs",
"http",
"indexing_pressure",
"indices",
"ingest",
"jvm",
"os",
"process",
"repositories",
"script",
"script_cache",
"thread_pool",
"transport",
"discovery",
"indexing_pressure"
"transport"
],
"description": "Limit the information returned to the specified metrics"
},
Expand All @@ -124,15 +143,20 @@
"flush",
"get",
"indexing",
"mappings",
"merge",
"request_cache",
"recovery",
"refresh",
"search",
"segments",
"store",
"warmer",
"bulk",
"shard_stats"
"shard_stats",
"translog",
"dense_vector",
"sparse_vector"
],
"description": "Limit the information returned for `indices` metric to the specific index metrics. Isn't used if `indices` (or `all`) metric isn't specified."
}
Expand All @@ -148,17 +172,24 @@
"type": "list",
"options": [
"_all",
"_none",
"adaptive_selection",
"allocations",
"breaker",
"discovery",
"fs",
"http",
"indexing_pressure",
"indices",
"ingest",
"jvm",
"os",
"process",
"repositories",
"script",
"script_cache",
"thread_pool",
"transport",
"discovery",
"indexing_pressure"
"transport"
],
"description": "Limit the information returned to the specified metrics"
},
Expand All @@ -173,15 +204,20 @@
"flush",
"get",
"indexing",
"mappings",
"merge",
"request_cache",
"recovery",
"refresh",
"search",
"segments",
"store",
"warmer",
"bulk",
"shard_stats"
"shard_stats",
"translog",
"dense_vector",
"sparse_vector"
],
"description": "Limit the information returned for `indices` metric to the specific index metrics. Isn't used if `indices` (or `all`) metric isn't specified."
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
"type": "list",
"options": [
"_all",
"aggregations",
"rest_actions"
],
"description": "Limit the information returned to the specified metrics"
Expand All @@ -57,6 +58,7 @@
"type": "list",
"options": [
"_all",
"aggregations",
"rest_actions"
],
"description": "Limit the information returned to the specified metrics"
Expand Down