forked from opensearch-project/opensearch-api-specification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindices.stats.yaml
206 lines (206 loc) · 5.41 KB
/
indices.stats.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
openapi: 3.1.0
info:
title: Schemas of indices.stats category
description: Schemas of indices.stats category
version: 1.0.0
paths: {}
components:
schemas:
ShardFileSizeInfo:
type: object
properties:
description:
type: string
size_in_bytes:
type: number
min_size_in_bytes:
type: number
max_size_in_bytes:
type: number
average_size_in_bytes:
type: number
count:
type: number
required:
- description
- size_in_bytes
AllIndicesStats:
type: object
properties:
primaries:
$ref: '#/components/schemas/IndexStats'
total:
$ref: '#/components/schemas/IndexStats'
required:
- primaries
- total
IndicesStats:
type: object
properties:
uuid:
$ref: '_common.yaml#/components/schemas/Uuid'
primaries:
$ref: '#/components/schemas/IndexStats'
total:
$ref: '#/components/schemas/IndexStats'
shards:
type: object
additionalProperties:
type: array
items:
$ref: '#/components/schemas/IndexShardStats'
required:
- primaries
- total
- uuid
IndexStatsBase:
type: object
properties:
docs:
$ref: '_common.yaml#/components/schemas/DocStats'
store:
$ref: '_common.yaml#/components/schemas/StoreStats'
indexing:
$ref: '_common.yaml#/components/schemas/IndexingStats'
get:
$ref: '_common.yaml#/components/schemas/GetStats'
search:
$ref: '_common.yaml#/components/schemas/SearchStats'
merges:
$ref: '_common.yaml#/components/schemas/MergesStats'
refresh:
$ref: '_common.yaml#/components/schemas/RefreshStats'
flush:
$ref: '_common.yaml#/components/schemas/FlushStats'
warmer:
$ref: '_common.yaml#/components/schemas/WarmerStats'
query_cache:
$ref: '_common.yaml#/components/schemas/QueryCacheStats'
fielddata:
$ref: '_common.yaml#/components/schemas/FielddataStats'
completion:
$ref: '_common.yaml#/components/schemas/CompletionStats'
segments:
$ref: '_common.yaml#/components/schemas/SegmentsStats'
translog:
$ref: '_common.yaml#/components/schemas/TranslogStats'
request_cache:
$ref: '_common.yaml#/components/schemas/RequestCacheStats'
recovery:
$ref: '_common.yaml#/components/schemas/RecoveryStats'
IndexStats:
allOf:
- $ref: '#/components/schemas/IndexStatsBase'
- type: object
IndexShardStats:
allOf:
- $ref: '#/components/schemas/IndexStatsBase'
- type: object
properties:
routing:
$ref: '#/components/schemas/ShardRouting'
commit:
$ref: '#/components/schemas/ShardCommit'
seq_no:
$ref: '#/components/schemas/ShardSequenceNumber'
retention_leases:
$ref: '#/components/schemas/ShardRetentionLeases'
shard_path:
$ref: '#/components/schemas/ShardPath'
ShardCommit:
type: object
properties:
generation:
type: number
id:
$ref: '_common.yaml#/components/schemas/Id'
num_docs:
type: number
user_data:
type: object
additionalProperties:
type: string
required:
- generation
- id
- num_docs
- user_data
ShardPath:
type: object
properties:
data_path:
type: string
is_custom_data_path:
type: boolean
state_path:
type: string
required:
- data_path
- is_custom_data_path
- state_path
ShardRetentionLeases:
type: object
properties:
primary_term:
type: number
version:
$ref: '_common.yaml#/components/schemas/VersionNumber'
leases:
type: array
items:
$ref: '#/components/schemas/ShardLease'
required:
- leases
- primary_term
- version
ShardLease:
type: object
properties:
id:
$ref: '_common.yaml#/components/schemas/Id'
retaining_seq_no:
$ref: '_common.yaml#/components/schemas/SequenceNumber'
timestamp:
type: number
source:
type: string
required:
- id
- retaining_seq_no
- source
- timestamp
ShardRouting:
type: object
properties:
node:
type: string
primary:
type: boolean
relocating_node:
type: ['null', string]
state:
$ref: '#/components/schemas/ShardRoutingState'
required:
- node
- primary
- state
ShardRoutingState:
type: string
enum:
- INITIALIZING
- RELOCATING
- STARTED
- UNASSIGNED
ShardSequenceNumber:
type: object
properties:
global_checkpoint:
type: number
local_checkpoint:
type: number
max_seq_no:
$ref: '_common.yaml#/components/schemas/SequenceNumber'
required:
- global_checkpoint
- local_checkpoint
- max_seq_no