You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: elasticsearch-api/lib/elasticsearch/api/actions/nodes/hot_threads.rb
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -30,12 +30,11 @@ module Actions
30
30
#
31
31
# client.nodes.hot_threads threads: 10
32
32
#
33
-
# @option arguments [List] :node_id A comma-separated list of node IDs or names to limit the returned information;
34
-
# use `_local` to return information from the node you're connecting to,
35
-
# leave empty to get information from all nodes
33
+
# @option arguments [List] :node_id A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes
36
34
# @option arguments [Time] :interval The interval for the second sampling of threads
37
35
# @option arguments [Number] :snapshots Number of samples of thread stacktrace (default: 10)
38
36
# @option arguments [Number] :threads Specify the number of threads to provide information for (default: 3)
37
+
# @option arguments [Boolean] :ignore_idle_threads Don't show threads that are in known-idle places, such as waiting on a socket select or pulling from an empty task queue (default: true)
39
38
# @option arguments [String] :type The type to sample (default: cpu) (options: cpu, wait, block)
# @option arguments [List] :node_id A comma-separated list of node IDs or names to limit
43
-
# the returned information; use `_local` to return information
44
-
# from the node you're connecting to, leave empty to get information
45
-
# from all nodes
46
-
# @option arguments [List] :completion_fields A comma-separated list of fields for `fielddata` and `suggest`
47
-
# index metrics (supports wildcards)
48
-
# @option arguments [List] :fielddata_fields A comma-separated list of fields for `fielddata` index metric
49
-
# (supports wildcards)
50
-
# @option arguments [List] :fields A comma-separated list of fields for `fielddata` and `completion` index
51
-
# metrics (supports wildcards)
52
-
# @option arguments [Boolean] :include_segment_file_sizes Whether to report the aggregated disk usage of each one of the Lucene index files. Only applies if segment stats are requested. (default: false)
33
+
# @option arguments [List] :metric Limit the information returned to the specified metrics (options: _all,breaker,fs,http,indices,jvm,os,process,thread_pool,transport,discovery)
34
+
# @option arguments [List] :index_metric Limit the information returned for `indices` metric to the specific index metrics. Isn't used if `indices` (or `all`) metric isn't specified. (options: _all,completion,docs,fielddata,query_cache,flush,get,indexing,merge,request_cache,refresh,search,segments,store,warmer,suggest)
35
+
# @option arguments [List] :node_id A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes
36
+
# @option arguments [List] :completion_fields A comma-separated list of fields for `fielddata` and `suggest` index metric (supports wildcards)
37
+
# @option arguments [List] :fielddata_fields A comma-separated list of fields for `fielddata` index metric (supports wildcards)
38
+
# @option arguments [List] :fields A comma-separated list of fields for `fielddata` and `completion` index metric (supports wildcards)
53
39
# @option arguments [Boolean] :groups A comma-separated list of search groups for `search` index metric
54
-
# @option arguments [Boolean] :human Whether to return time and byte values in human-readable format
55
-
# @option arguments [String] :level Specify the level for aggregating indices stats
56
-
# (options: node, indices, shards)
40
+
# @option arguments [String] :level Return indices stats aggregated at index, node or shard level (options: indices, node, shards)
57
41
# @option arguments [List] :types A comma-separated list of document types for the `indexing` index metric
# @option arguments [Boolean] :include_segment_file_sizes Whether to report the aggregated disk usage of each one of the Lucene index files (only applies if segment stats are requested)
# The cluster nodes usage API allows to retrieve information on the usage of features for each node.
7
+
#
8
+
# @option arguments [List] :metric Limit the information returned to the specified metrics (options: _all,rest_actions)
9
+
# @option arguments [List] :node_id A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes
0 commit comments