forked from opensearch-project/opensearch-api-specification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcat.nodes.yaml
319 lines (319 loc) · 11.2 KB
/
cat.nodes.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
openapi: 3.1.0
info:
title: Schemas of cat.nodes category
description: Schemas of cat.nodes category
version: 1.0.0
paths: {}
components:
schemas:
NodesRecord:
type: object
properties:
id:
$ref: '_common.yaml#/components/schemas/Id'
pid:
description: The process identifier.
type: string
ip:
description: The IP address.
type: string
port:
description: The bound transport port.
type: string
http_address:
description: The bound HTTP address.
type: string
version:
$ref: '_common.yaml#/components/schemas/VersionString'
flavor:
description: The OpenSearch distribution flavor.
type: string
type:
description: The OpenSearch distribution type.
type: string
build:
description: The OpenSearch build hash.
type: string
jdk:
description: The Java version.
type: string
disk.total:
type: string
disk.used:
type: string
disk.avail:
type: string
disk.used_percent:
$ref: '_common.yaml#/components/schemas/PercentageString'
heap.current:
description: The used heap.
type: string
heap.percent:
$ref: '_common.yaml#/components/schemas/PercentageString'
heap.max:
description: The maximum configured heap.
type: string
ram.current:
description: The used machine memory.
type: string
ram.percent:
$ref: '_common.yaml#/components/schemas/PercentageString'
ram.max:
description: The total machine memory.
type: string
file_desc.current:
description: The used file descriptors.
type: string
file_desc.percent:
$ref: '_common.yaml#/components/schemas/PercentageString'
file_desc.max:
description: The maximum number of file descriptors.
type: string
cpu:
description: The recent system CPU usage as a percentage.
type: string
load_1m:
description: The load average for the most recent minute.
type: string
load_5m:
description: The load average for the last five minutes.
type: string
load_15m:
description: The load average for the last fifteen minutes.
type: string
uptime:
description: The node uptime.
type: string
node.role:
description: |-
The roles of the node.
Returned values include `c`(cold node), `d`(data node), `f`(frozen node), `h`(hot node), `i`(ingest node), `l`(machine learning node), `m` (cluster-manager eligible node), `r`(remote cluster client node), `s`(content node), `t`(transform node), `v`(voting-only node), `w`(warm node),and `-`(coordinating node only).
type: string
node.roles:
description: |-
A comma-separated list of the roles of the node.
Returned values may include but are not limited to: `data`, `ingest`, `master`, `cluster_manager`, `remote_cluster_client`, `search`, and `-`(coordinating node only).
type: string
cluster_manager:
description: |-
Indicates whether the node is the elected cluster-manager node.
Returned values include `*`(elected cluster-manager) and `-`(not elected cluster-manager).
type: string
master:
description: |-
Indicates whether the node is the elected master node.
Returned values include `*`(elected master) and `-`(not elected master).
type: string
x-version-deprecated: '2.0'
x-deprecation-message: To promote inclusive language, use 'cluster_manager' instead.
name:
$ref: '_common.yaml#/components/schemas/Name'
completion.size:
description: The size of completion.
type: string
fielddata.memory_size:
description: The used fielddata cache.
type: string
fielddata.evictions:
description: The fielddata evictions.
type: string
query_cache.memory_size:
description: The used query cache.
type: string
query_cache.evictions:
description: The query cache evictions.
type: string
query_cache.hit_count:
description: The query cache hit counts.
type: string
query_cache.miss_count:
description: The query cache miss counts.
type: string
request_cache.memory_size:
description: The used request cache.
type: string
request_cache.evictions:
description: The request cache evictions.
type: string
request_cache.hit_count:
description: The request cache hit counts.
type: string
request_cache.miss_count:
description: The request cache miss counts.
type: string
flush.total:
description: The number of flushes.
type: string
flush.total_time:
description: The time spent in flush.
type: string
get.current:
description: The number of current get ops.
type: string
get.time:
description: The time spent in get.
type: string
get.total:
description: The number of get ops.
type: string
get.exists_time:
description: The time spent in successful gets.
type: string
get.exists_total:
description: The number of successful get operations.
type: string
get.missing_time:
description: The time spent in failed gets.
type: string
get.missing_total:
description: The number of failed gets.
type: string
indexing.delete_current:
description: The number of current deletions.
type: string
indexing.delete_time:
description: The time spent in deletions.
type: string
indexing.delete_total:
description: The number of delete operations.
type: string
indexing.index_current:
description: The number of current indexing operations.
type: string
indexing.index_time:
description: The time spent in indexing.
type: string
indexing.index_total:
description: The number of indexing operations.
type: string
indexing.index_failed:
description: The number of failed indexing operations.
type: string
merges.current:
description: The number of current merges.
type: string
merges.current_docs:
description: The number of current merging docs.
type: string
merges.current_size:
description: The size of current merges.
type: string
merges.total:
description: The number of completed merge operations.
type: string
merges.total_docs:
description: The docs merged.
type: string
merges.total_size:
description: The size merged.
type: string
merges.total_time:
description: The time spent in merges.
type: string
refresh.total:
description: The total refreshes.
type: string
refresh.time:
description: The time spent in refreshes.
type: string
refresh.external_total:
description: The total external refreshes.
type: string
refresh.external_time:
description: The time spent in external refreshes.
type: string
refresh.listeners:
description: The number of pending refresh listeners.
type: string
script.compilations:
description: The total script compilations.
type: string
script.cache_evictions:
description: The total compiled scripts evicted from the cache.
type: string
script.compilation_limit_triggered:
description: The script cache compilation limit triggered.
type: string
search.fetch_current:
description: The current fetch phase operations.
type: string
search.fetch_time:
description: The time spent in fetch phase.
type: string
search.fetch_total:
description: The total fetch operations.
type: string
search.open_contexts:
description: The open search contexts.
type: string
search.query_current:
description: The current query phase operations.
type: string
search.query_time:
description: The time spent in query phase.
type: string
search.query_total:
description: The total query phase operations.
type: string
search.concurrent_query_current:
type: string
search.concurrent_query_time:
type: string
search.concurrent_query_total:
type: string
search.concurrent_avg_slice_count:
type: string
search.scroll_current:
description: The open scroll contexts.
type: string
search.scroll_time:
description: The time scroll contexts held open.
type: string
search.scroll_total:
description: The completed scroll contexts.
type: string
search.point_in_time_current:
type: string
search.point_in_time_time:
type: string
search.point_in_time_total:
type: string
segments.count:
description: The number of segments.
type: string
segments.memory:
description: The memory used by segments.
type: string
segments.index_writer_memory:
description: The memory used by the index writer.
type: string
segments.version_map_memory:
description: The memory used by the version map.
type: string
segments.fixed_bitset_memory:
description: The memory used by fixed bit sets for nested object field types and export type filters for types referred in _parent fields.
type: string
suggest.current:
description: The number of current suggest operations.
type: string
suggest.time:
description: The time spend in suggest.
type: string
suggest.total:
description: The number of suggest operations.
type: string
bulk.total_operations:
description: The number of bulk shard operations.
type: string
bulk.total_time:
description: The time spend in shard bulk.
type: string
bulk.total_size_in_bytes:
description: The total size in bytes of shard bulk.
type: string
bulk.avg_time:
description: The average time spend in shard bulk.
type: string
bulk.avg_size_in_bytes:
description: The average size in bytes of shard bulk.
type: string