forked from opensearch-project/opensearch-api-specification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nodes.yaml
711 lines (711 loc) · 30.4 KB
/
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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
openapi: 3.1.0
info:
title: OpenSearch Nodes API
description: OpenSearch Nodes API.
version: 1.0.0
paths:
/_cluster/nodes/hot_threads:
get:
operationId: nodes.hot_threads.0
x-operation-group: nodes.hot_threads
x-ignorable: true
deprecated: true
x-deprecation-message: The hot accepts /_cluster/nodes as prefix for backwards compatibility reasons
x-version-added: '1.0'
x-version-deprecated: '1.0'
description: Returns information about hot threads on each node in the cluster.
externalDocs:
url: https://opensearch.org/docs/latest/api-reference/nodes-apis/nodes-hot-threads/
parameters:
- $ref: '#/components/parameters/nodes.hot_threads::query.ignore_idle_threads'
- $ref: '#/components/parameters/nodes.hot_threads::query.interval'
- $ref: '#/components/parameters/nodes.hot_threads::query.snapshots'
- $ref: '#/components/parameters/nodes.hot_threads::query.threads'
- $ref: '#/components/parameters/nodes.hot_threads::query.timeout'
- $ref: '#/components/parameters/nodes.hot_threads::query.type'
responses:
'200':
$ref: '#/components/responses/nodes.hot_threads@200'
/_cluster/nodes/hotthreads:
get:
operationId: nodes.hot_threads.1
x-operation-group: nodes.hot_threads
x-ignorable: true
deprecated: true
x-deprecation-message: The hot threads API accepts `hotthreads` but only `hot_threads` is documented
x-version-added: '1.0'
x-version-deprecated: '1.0'
description: Returns information about hot threads on each node in the cluster.
externalDocs:
url: https://opensearch.org/docs/latest/api-reference/nodes-apis/nodes-hot-threads/
parameters:
- $ref: '#/components/parameters/nodes.hot_threads::query.ignore_idle_threads'
- $ref: '#/components/parameters/nodes.hot_threads::query.interval'
- $ref: '#/components/parameters/nodes.hot_threads::query.snapshots'
- $ref: '#/components/parameters/nodes.hot_threads::query.threads'
- $ref: '#/components/parameters/nodes.hot_threads::query.timeout'
- $ref: '#/components/parameters/nodes.hot_threads::query.type'
responses:
'200':
$ref: '#/components/responses/nodes.hot_threads@200'
/_cluster/nodes/{node_id}/hot_threads:
get:
operationId: nodes.hot_threads.2
x-operation-group: nodes.hot_threads
x-ignorable: true
deprecated: true
x-deprecation-message: The hot accepts /_cluster/nodes as prefix for backwards compatibility reasons
x-version-added: '1.0'
x-version-deprecated: '1.0'
description: Returns information about hot threads on each node in the cluster.
externalDocs:
url: https://opensearch.org/docs/latest/api-reference/nodes-apis/nodes-hot-threads/
parameters:
- $ref: '#/components/parameters/nodes.hot_threads::path.node_id'
- $ref: '#/components/parameters/nodes.hot_threads::query.ignore_idle_threads'
- $ref: '#/components/parameters/nodes.hot_threads::query.interval'
- $ref: '#/components/parameters/nodes.hot_threads::query.snapshots'
- $ref: '#/components/parameters/nodes.hot_threads::query.threads'
- $ref: '#/components/parameters/nodes.hot_threads::query.timeout'
- $ref: '#/components/parameters/nodes.hot_threads::query.type'
responses:
'200':
$ref: '#/components/responses/nodes.hot_threads@200'
/_cluster/nodes/{node_id}/hotthreads:
get:
operationId: nodes.hot_threads.3
x-operation-group: nodes.hot_threads
x-ignorable: true
deprecated: true
x-deprecation-message: The hot threads API accepts `hotthreads` but only `hot_threads` is documented
x-version-added: '1.0'
x-version-deprecated: '1.0'
description: Returns information about hot threads on each node in the cluster.
externalDocs:
url: https://opensearch.org/docs/latest/api-reference/nodes-apis/nodes-hot-threads/
parameters:
- $ref: '#/components/parameters/nodes.hot_threads::path.node_id'
- $ref: '#/components/parameters/nodes.hot_threads::query.ignore_idle_threads'
- $ref: '#/components/parameters/nodes.hot_threads::query.interval'
- $ref: '#/components/parameters/nodes.hot_threads::query.snapshots'
- $ref: '#/components/parameters/nodes.hot_threads::query.threads'
- $ref: '#/components/parameters/nodes.hot_threads::query.timeout'
- $ref: '#/components/parameters/nodes.hot_threads::query.type'
responses:
'200':
$ref: '#/components/responses/nodes.hot_threads@200'
/_nodes:
get:
operationId: nodes.info.0
x-operation-group: nodes.info
x-version-added: '1.0'
description: Returns information about nodes in the cluster.
externalDocs:
url: https://opensearch.org/docs/latest/api-reference/nodes-apis/nodes-info/
parameters:
- $ref: '#/components/parameters/nodes.info::query.flat_settings'
- $ref: '#/components/parameters/nodes.info::query.timeout'
responses:
'200':
$ref: '#/components/responses/nodes.info@200'
/_nodes/hot_threads:
get:
operationId: nodes.hot_threads.4
x-operation-group: nodes.hot_threads
x-version-added: '1.0'
description: Returns information about hot threads on each node in the cluster.
externalDocs:
url: https://opensearch.org/docs/latest/api-reference/nodes-apis/nodes-hot-threads/
parameters:
- $ref: '#/components/parameters/nodes.hot_threads::query.ignore_idle_threads'
- $ref: '#/components/parameters/nodes.hot_threads::query.interval'
- $ref: '#/components/parameters/nodes.hot_threads::query.snapshots'
- $ref: '#/components/parameters/nodes.hot_threads::query.threads'
- $ref: '#/components/parameters/nodes.hot_threads::query.timeout'
- $ref: '#/components/parameters/nodes.hot_threads::query.type'
responses:
'200':
$ref: '#/components/responses/nodes.hot_threads@200'
/_nodes/hotthreads:
get:
operationId: nodes.hot_threads.5
x-operation-group: nodes.hot_threads
x-ignorable: true
deprecated: true
x-deprecation-message: The hot threads API accepts `hotthreads` but only `hot_threads` is documented
x-version-added: '1.0'
x-version-deprecated: '1.0'
description: Returns information about hot threads on each node in the cluster.
externalDocs:
url: https://opensearch.org/docs/latest/api-reference/nodes-apis/nodes-hot-threads/
parameters:
- $ref: '#/components/parameters/nodes.hot_threads::query.ignore_idle_threads'
- $ref: '#/components/parameters/nodes.hot_threads::query.interval'
- $ref: '#/components/parameters/nodes.hot_threads::query.snapshots'
- $ref: '#/components/parameters/nodes.hot_threads::query.threads'
- $ref: '#/components/parameters/nodes.hot_threads::query.timeout'
- $ref: '#/components/parameters/nodes.hot_threads::query.type'
responses:
'200':
$ref: '#/components/responses/nodes.hot_threads@200'
/_nodes/reload_secure_settings:
post:
operationId: nodes.reload_secure_settings.0
x-operation-group: nodes.reload_secure_settings
x-version-added: '1.0'
description: Reloads secure settings.
externalDocs:
url: https://opensearch.org/docs/latest/api-reference/nodes-apis/nodes-reload-secure/
parameters:
- $ref: '#/components/parameters/nodes.reload_secure_settings::query.timeout'
requestBody:
$ref: '#/components/requestBodies/nodes.reload_secure_settings'
responses:
'200':
$ref: '#/components/responses/nodes.reload_secure_settings@200'
/_nodes/stats:
get:
operationId: nodes.stats.0
x-operation-group: nodes.stats
x-version-added: '1.0'
description: Returns statistical information about nodes in the cluster.
externalDocs:
url: https://opensearch.org/docs/latest/api-reference/nodes-apis/nodes-usage/
parameters:
- $ref: '#/components/parameters/nodes.stats::query.completion_fields'
- $ref: '#/components/parameters/nodes.stats::query.fielddata_fields'
- $ref: '#/components/parameters/nodes.stats::query.fields'
- $ref: '#/components/parameters/nodes.stats::query.groups'
- $ref: '#/components/parameters/nodes.stats::query.include_segment_file_sizes'
- $ref: '#/components/parameters/nodes.stats::query.level'
- $ref: '#/components/parameters/nodes.stats::query.timeout'
- $ref: '#/components/parameters/nodes.stats::query.types'
responses:
'200':
$ref: '#/components/responses/nodes.stats@200'
/_nodes/stats/{metric}:
get:
operationId: nodes.stats.1
x-operation-group: nodes.stats
x-version-added: '1.0'
description: Returns statistical information about nodes in the cluster.
externalDocs:
url: https://opensearch.org/docs/latest/api-reference/nodes-apis/nodes-usage/
parameters:
- $ref: '#/components/parameters/nodes.stats::path.metric'
- $ref: '#/components/parameters/nodes.stats::query.completion_fields'
- $ref: '#/components/parameters/nodes.stats::query.fielddata_fields'
- $ref: '#/components/parameters/nodes.stats::query.fields'
- $ref: '#/components/parameters/nodes.stats::query.groups'
- $ref: '#/components/parameters/nodes.stats::query.include_segment_file_sizes'
- $ref: '#/components/parameters/nodes.stats::query.level'
- $ref: '#/components/parameters/nodes.stats::query.timeout'
- $ref: '#/components/parameters/nodes.stats::query.types'
responses:
'200':
$ref: '#/components/responses/nodes.stats@200'
/_nodes/stats/{metric}/{index_metric}:
get:
operationId: nodes.stats.2
x-operation-group: nodes.stats
x-version-added: '1.0'
description: Returns statistical information about nodes in the cluster.
externalDocs:
url: https://opensearch.org/docs/latest/api-reference/nodes-apis/nodes-usage/
parameters:
- $ref: '#/components/parameters/nodes.stats::path.index_metric'
- $ref: '#/components/parameters/nodes.stats::path.metric'
- $ref: '#/components/parameters/nodes.stats::query.completion_fields'
- $ref: '#/components/parameters/nodes.stats::query.fielddata_fields'
- $ref: '#/components/parameters/nodes.stats::query.fields'
- $ref: '#/components/parameters/nodes.stats::query.groups'
- $ref: '#/components/parameters/nodes.stats::query.include_segment_file_sizes'
- $ref: '#/components/parameters/nodes.stats::query.level'
- $ref: '#/components/parameters/nodes.stats::query.timeout'
- $ref: '#/components/parameters/nodes.stats::query.types'
responses:
'200':
$ref: '#/components/responses/nodes.stats@200'
/_nodes/usage:
get:
operationId: nodes.usage.0
x-operation-group: nodes.usage
x-version-added: '1.0'
description: Returns low-level information about REST actions usage on nodes.
externalDocs:
url: https://opensearch.org/docs/latest
parameters:
- $ref: '#/components/parameters/nodes.usage::query.timeout'
responses:
'200':
$ref: '#/components/responses/nodes.usage@200'
/_nodes/usage/{metric}:
get:
operationId: nodes.usage.1
x-operation-group: nodes.usage
x-version-added: '1.0'
description: Returns low-level information about REST actions usage on nodes.
externalDocs:
url: https://opensearch.org/docs/latest
parameters:
- $ref: '#/components/parameters/nodes.usage::path.metric'
- $ref: '#/components/parameters/nodes.usage::query.timeout'
responses:
'200':
$ref: '#/components/responses/nodes.usage@200'
/_nodes/{node_id_or_metric}:
get:
operationId: nodes.info.1
x-operation-group: nodes.info
x-version-added: '1.0'
description: Returns information about nodes in the cluster.
externalDocs:
url: https://opensearch.org/docs/latest/api-reference/nodes-apis/nodes-info/
parameters:
- $ref: '#/components/parameters/nodes.info::path.node_id_or_metric'
- $ref: '#/components/parameters/nodes.info::query.flat_settings'
- $ref: '#/components/parameters/nodes.info::query.timeout'
responses:
'200':
$ref: '#/components/responses/nodes.info@200'
/_nodes/{node_id}/hot_threads:
get:
operationId: nodes.hot_threads.6
x-operation-group: nodes.hot_threads
x-version-added: '1.0'
description: Returns information about hot threads on each node in the cluster.
externalDocs:
url: https://opensearch.org/docs/latest/api-reference/nodes-apis/nodes-hot-threads/
parameters:
- $ref: '#/components/parameters/nodes.hot_threads::path.node_id'
- $ref: '#/components/parameters/nodes.hot_threads::query.ignore_idle_threads'
- $ref: '#/components/parameters/nodes.hot_threads::query.interval'
- $ref: '#/components/parameters/nodes.hot_threads::query.snapshots'
- $ref: '#/components/parameters/nodes.hot_threads::query.threads'
- $ref: '#/components/parameters/nodes.hot_threads::query.timeout'
- $ref: '#/components/parameters/nodes.hot_threads::query.type'
responses:
'200':
$ref: '#/components/responses/nodes.hot_threads@200'
/_nodes/{node_id}/hotthreads:
get:
operationId: nodes.hot_threads.7
x-operation-group: nodes.hot_threads
x-ignorable: true
deprecated: true
x-deprecation-message: The hot threads API accepts `hotthreads` but only `hot_threads` is documented
x-version-added: '1.0'
x-version-deprecated: '1.0'
description: Returns information about hot threads on each node in the cluster.
externalDocs:
url: https://opensearch.org/docs/latest/api-reference/nodes-apis/nodes-hot-threads/
parameters:
- $ref: '#/components/parameters/nodes.hot_threads::path.node_id'
- $ref: '#/components/parameters/nodes.hot_threads::query.ignore_idle_threads'
- $ref: '#/components/parameters/nodes.hot_threads::query.interval'
- $ref: '#/components/parameters/nodes.hot_threads::query.snapshots'
- $ref: '#/components/parameters/nodes.hot_threads::query.threads'
- $ref: '#/components/parameters/nodes.hot_threads::query.timeout'
- $ref: '#/components/parameters/nodes.hot_threads::query.type'
responses:
'200':
$ref: '#/components/responses/nodes.hot_threads@200'
/_nodes/{node_id}/reload_secure_settings:
post:
operationId: nodes.reload_secure_settings.1
x-operation-group: nodes.reload_secure_settings
x-version-added: '1.0'
description: Reloads secure settings.
externalDocs:
url: https://opensearch.org/docs/latest/api-reference/nodes-apis/nodes-reload-secure/
parameters:
- $ref: '#/components/parameters/nodes.reload_secure_settings::path.node_id'
- $ref: '#/components/parameters/nodes.reload_secure_settings::query.timeout'
requestBody:
$ref: '#/components/requestBodies/nodes.reload_secure_settings'
responses:
'200':
$ref: '#/components/responses/nodes.reload_secure_settings@200'
/_nodes/{node_id}/stats:
get:
operationId: nodes.stats.3
x-operation-group: nodes.stats
x-version-added: '1.0'
description: Returns statistical information about nodes in the cluster.
externalDocs:
url: https://opensearch.org/docs/latest/api-reference/nodes-apis/nodes-usage/
parameters:
- $ref: '#/components/parameters/nodes.stats::path.node_id'
- $ref: '#/components/parameters/nodes.stats::query.completion_fields'
- $ref: '#/components/parameters/nodes.stats::query.fielddata_fields'
- $ref: '#/components/parameters/nodes.stats::query.fields'
- $ref: '#/components/parameters/nodes.stats::query.groups'
- $ref: '#/components/parameters/nodes.stats::query.include_segment_file_sizes'
- $ref: '#/components/parameters/nodes.stats::query.level'
- $ref: '#/components/parameters/nodes.stats::query.timeout'
- $ref: '#/components/parameters/nodes.stats::query.types'
responses:
'200':
$ref: '#/components/responses/nodes.stats@200'
/_nodes/{node_id}/stats/{metric}:
get:
operationId: nodes.stats.4
x-operation-group: nodes.stats
x-version-added: '1.0'
description: Returns statistical information about nodes in the cluster.
externalDocs:
url: https://opensearch.org/docs/latest/api-reference/nodes-apis/nodes-usage/
parameters:
- $ref: '#/components/parameters/nodes.stats::path.metric'
- $ref: '#/components/parameters/nodes.stats::path.node_id'
- $ref: '#/components/parameters/nodes.stats::query.completion_fields'
- $ref: '#/components/parameters/nodes.stats::query.fielddata_fields'
- $ref: '#/components/parameters/nodes.stats::query.fields'
- $ref: '#/components/parameters/nodes.stats::query.groups'
- $ref: '#/components/parameters/nodes.stats::query.include_segment_file_sizes'
- $ref: '#/components/parameters/nodes.stats::query.level'
- $ref: '#/components/parameters/nodes.stats::query.timeout'
- $ref: '#/components/parameters/nodes.stats::query.types'
responses:
'200':
$ref: '#/components/responses/nodes.stats@200'
/_nodes/{node_id}/stats/{metric}/{index_metric}:
get:
operationId: nodes.stats.5
x-operation-group: nodes.stats
x-version-added: '1.0'
description: Returns statistical information about nodes in the cluster.
externalDocs:
url: https://opensearch.org/docs/latest/api-reference/nodes-apis/nodes-usage/
parameters:
- $ref: '#/components/parameters/nodes.stats::path.index_metric'
- $ref: '#/components/parameters/nodes.stats::path.metric'
- $ref: '#/components/parameters/nodes.stats::path.node_id'
- $ref: '#/components/parameters/nodes.stats::query.completion_fields'
- $ref: '#/components/parameters/nodes.stats::query.fielddata_fields'
- $ref: '#/components/parameters/nodes.stats::query.fields'
- $ref: '#/components/parameters/nodes.stats::query.groups'
- $ref: '#/components/parameters/nodes.stats::query.include_segment_file_sizes'
- $ref: '#/components/parameters/nodes.stats::query.level'
- $ref: '#/components/parameters/nodes.stats::query.timeout'
- $ref: '#/components/parameters/nodes.stats::query.types'
responses:
'200':
$ref: '#/components/responses/nodes.stats@200'
/_nodes/{node_id}/usage:
get:
operationId: nodes.usage.2
x-operation-group: nodes.usage
x-version-added: '1.0'
description: Returns low-level information about REST actions usage on nodes.
externalDocs:
url: https://opensearch.org/docs/latest
parameters:
- $ref: '#/components/parameters/nodes.usage::path.node_id'
- $ref: '#/components/parameters/nodes.usage::query.timeout'
responses:
'200':
$ref: '#/components/responses/nodes.usage@200'
/_nodes/{node_id}/usage/{metric}:
get:
operationId: nodes.usage.3
x-operation-group: nodes.usage
x-version-added: '1.0'
description: Returns low-level information about REST actions usage on nodes.
externalDocs:
url: https://opensearch.org/docs/latest
parameters:
- $ref: '#/components/parameters/nodes.usage::path.metric'
- $ref: '#/components/parameters/nodes.usage::path.node_id'
- $ref: '#/components/parameters/nodes.usage::query.timeout'
responses:
'200':
$ref: '#/components/responses/nodes.usage@200'
/_nodes/{node_id}/{metric}:
get:
operationId: nodes.info.3
x-operation-group: nodes.info
x-version-added: '1.0'
description: Returns information about nodes in the cluster.
externalDocs:
url: https://opensearch.org/docs/latest/api-reference/nodes-apis/nodes-info/
parameters:
- $ref: '#/components/parameters/nodes.info::path.metric'
- $ref: '#/components/parameters/nodes.info::path.node_id'
- $ref: '#/components/parameters/nodes.info::query.flat_settings'
- $ref: '#/components/parameters/nodes.info::query.timeout'
responses:
'200':
$ref: '#/components/responses/nodes.info@200'
components:
requestBodies:
nodes.reload_secure_settings:
content:
application/json:
schema:
type: object
properties:
secure_settings_password:
$ref: '../schemas/_common.yaml#/components/schemas/Password'
description: An object containing the password for the opensearch keystore
responses:
nodes.hot_threads@200: {}
nodes.info@200:
content:
application/json:
schema:
$ref: '../schemas/nodes.info.yaml#/components/schemas/ResponseBase'
nodes.reload_secure_settings@200:
content:
application/json:
schema:
$ref: '../schemas/nodes.reload_secure_settings.yaml#/components/schemas/ResponseBase'
nodes.stats@200:
content:
application/json:
schema:
$ref: '../schemas/nodes.stats.yaml#/components/schemas/ResponseBase'
nodes.usage@200:
content:
application/json:
schema:
$ref: '../schemas/nodes.usage.yaml#/components/schemas/ResponseBase'
parameters:
nodes.hot_threads::path.node_id:
name: node_id
in: path
description: 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.
schema:
type: array
description: 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.
items:
type: string
required: true
nodes.hot_threads::query.ignore_idle_threads:
name: ignore_idle_threads
in: query
description: Don't show threads that are in known-idle places, such as waiting on a socket select or pulling from an empty task queue.
schema:
type: boolean
default: true
description: Don't show threads that are in known-idle places, such as waiting on a socket select or pulling from an empty task queue.
nodes.hot_threads::query.interval:
name: interval
in: query
description: The interval for the second sampling of threads.
schema:
$ref: '../schemas/_common.yaml#/components/schemas/Duration'
nodes.hot_threads::query.snapshots:
name: snapshots
in: query
description: Number of samples of thread stacktrace.
schema:
type: integer
default: 10
description: Number of samples of thread stacktrace.
format: int32
nodes.hot_threads::query.threads:
name: threads
in: query
description: Specify the number of threads to provide information for.
schema:
type: integer
default: 3
description: Specify the number of threads to provide information for.
format: int32
nodes.hot_threads::query.timeout:
name: timeout
in: query
description: Operation timeout.
schema:
$ref: '../schemas/_common.yaml#/components/schemas/Duration'
nodes.hot_threads::query.type:
name: type
in: query
description: The type to sample.
schema:
$ref: '../schemas/nodes._common.yaml#/components/schemas/SampleType'
nodes.info::path.node_id_or_metric:
in: path
name: node_id_or_metric
description: |
Limits the information returned to a list of node IDs or specific metrics.
Supports a comma-separated list, such as node1,node2 or http,ingest.
required: true
schema:
anyOf:
- title: node_id
$ref: '../schemas/_common.yaml#/components/schemas/NodeIds'
- title: metric
type: array
items:
$ref: '../schemas/nodes.info.yaml#/components/schemas/Metric'
style: simple
nodes.info::path.node_id:
in: path
name: node_id
description: Comma-separated list of node IDs or names used to limit returned information.
required: true
schema:
$ref: '../schemas/_common.yaml#/components/schemas/NodeIds'
style: simple
nodes.info::path.metric:
in: path
name: metric
description: Limits the information returned to the specific metrics. Supports a comma-separated list, such as http,ingest.
required: true
schema:
type: array
items:
$ref: '../schemas/nodes.info.yaml#/components/schemas/Metric'
style: simple
nodes.info::query.flat_settings:
in: query
name: flat_settings
description: If true, returns settings in flat format.
schema:
type: boolean
default: false
style: form
nodes.info::query.timeout:
in: query
name: timeout
description: Period to wait for a response. If no response is received before the timeout expires, the request fails and returns an error.
schema:
$ref: '../schemas/_common.yaml#/components/schemas/Duration'
style: form
nodes.reload_secure_settings::path.node_id:
in: path
name: node_id
description: The names of particular nodes in the cluster to target.
required: true
schema:
$ref: '../schemas/_common.yaml#/components/schemas/NodeIds'
style: simple
nodes.reload_secure_settings::query.timeout:
in: query
name: timeout
description: |-
Period to wait for a response.
If no response is received before the timeout expires, the request fails and returns an error.
schema:
$ref: '../schemas/_common.yaml#/components/schemas/Duration'
style: form
nodes.stats::path.index_metric:
in: path
name: index_metric
description: Limit the information returned for indices metric to the specific index metrics. It can be used only if indices (or all) metric is specified.
required: true
schema:
type: array
items:
$ref: '../schemas/nodes.stats.yaml#/components/schemas/IndexMetric'
style: simple
nodes.stats::path.metric:
in: path
name: metric
description: Limit the information returned to the specified metrics
required: true
schema:
type: array
items:
$ref: '../schemas/nodes.stats.yaml#/components/schemas/Metric'
style: simple
nodes.stats::path.node_id:
in: path
name: node_id
description: Comma-separated list of node IDs or names used to limit returned information.
required: true
schema:
$ref: '../schemas/_common.yaml#/components/schemas/NodeIds'
style: simple
nodes.stats::query.completion_fields:
in: query
name: completion_fields
description: Comma-separated list or wildcard expressions of fields to include in fielddata and suggest statistics.
schema:
$ref: '../schemas/_common.yaml#/components/schemas/Fields'
style: form
nodes.stats::query.fielddata_fields:
in: query
name: fielddata_fields
description: Comma-separated list or wildcard expressions of fields to include in fielddata statistics.
schema:
$ref: '../schemas/_common.yaml#/components/schemas/Fields'
style: form
nodes.stats::query.fields:
in: query
name: fields
description: Comma-separated list or wildcard expressions of fields to include in the statistics.
schema:
$ref: '../schemas/_common.yaml#/components/schemas/Fields'
style: form
nodes.stats::query.groups:
in: query
name: groups
description: Comma-separated list of search groups to include in the search statistics.
schema:
type: array
items:
type: string
style: form
nodes.stats::query.include_segment_file_sizes:
in: query
name: include_segment_file_sizes
description: If true, the call reports the aggregated disk usage of each one of the Lucene index files (only applies if segment stats are requested).
schema:
type: boolean
default: false
style: form
nodes.stats::query.level:
in: query
name: level
description: Indicates whether statistics are aggregated at the cluster, index, or shard level.
schema:
$ref: '../schemas/_common.yaml#/components/schemas/Level'
style: form
nodes.stats::query.timeout:
in: query
name: timeout
description: Period to wait for a response. If no response is received before the timeout expires, the request fails and returns an error.
schema:
$ref: '../schemas/_common.yaml#/components/schemas/Duration'
style: form
nodes.stats::query.types:
in: query
name: types
description: A comma-separated list of document types for the indexing index metric.
schema:
type: array
items:
type: string
style: form
nodes.usage::path.metric:
in: path
name: metric
description: |-
Limits the information returned to the specific metrics.
A comma-separated list of the following options: `_all`, `rest_actions`.
required: true
schema:
type: array
items:
$ref: '../schemas/nodes.usage.yaml#/components/schemas/Metric'
style: simple
nodes.usage::path.node_id:
in: path
name: node_id
description: 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
required: true
schema:
$ref: '../schemas/_common.yaml#/components/schemas/NodeIds'
style: simple
nodes.usage::query.timeout:
in: query
name: timeout
description: |-
Period to wait for a response.
If no response is received before the timeout expires, the request fails and returns an error.
schema:
$ref: '../schemas/_common.yaml#/components/schemas/Duration'
style: form