forked from opensearch-project/opensearch-api-specification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindices.stats.yaml
292 lines (292 loc) · 8.04 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
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
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
IndicesStats:
type: object
properties:
primaries:
$ref: '#/components/schemas/IndexStats'
shards:
type: object
additionalProperties:
type: array
items:
$ref: '#/components/schemas/ShardStats'
total:
$ref: '#/components/schemas/IndexStats'
uuid:
$ref: '_common.yaml#/components/schemas/Uuid'
health:
$ref: '_common.yaml#/components/schemas/HealthStatus'
status:
$ref: '#/components/schemas/IndexMetadataState'
IndexStats:
type: object
properties:
completion:
$ref: '_common.yaml#/components/schemas/CompletionStats'
docs:
$ref: '_common.yaml#/components/schemas/DocStats'
fielddata:
$ref: '_common.yaml#/components/schemas/FielddataStats'
flush:
$ref: '_common.yaml#/components/schemas/FlushStats'
get:
$ref: '_common.yaml#/components/schemas/GetStats'
indexing:
$ref: '_common.yaml#/components/schemas/IndexingStats'
indices:
$ref: '#/components/schemas/IndicesStats'
merges:
$ref: '_common.yaml#/components/schemas/MergesStats'
query_cache:
$ref: '_common.yaml#/components/schemas/QueryCacheStats'
recovery:
$ref: '_common.yaml#/components/schemas/RecoveryStats'
refresh:
$ref: '_common.yaml#/components/schemas/RefreshStats'
request_cache:
$ref: '_common.yaml#/components/schemas/RequestCacheStats'
search:
$ref: '_common.yaml#/components/schemas/SearchStats'
segments:
$ref: '_common.yaml#/components/schemas/SegmentsStats'
store:
$ref: '_common.yaml#/components/schemas/StoreStats'
translog:
$ref: '_common.yaml#/components/schemas/TranslogStats'
warmer:
$ref: '_common.yaml#/components/schemas/WarmerStats'
bulk:
$ref: '_common.yaml#/components/schemas/BulkStats'
shard_stats:
$ref: '#/components/schemas/ShardsTotalStats'
ShardsTotalStats:
type: object
properties:
total_count:
type: number
required:
- total_count
ShardStats:
type: object
properties:
commit:
$ref: '#/components/schemas/ShardCommit'
completion:
$ref: '_common.yaml#/components/schemas/CompletionStats'
docs:
$ref: '_common.yaml#/components/schemas/DocStats'
fielddata:
$ref: '_common.yaml#/components/schemas/FielddataStats'
flush:
$ref: '_common.yaml#/components/schemas/FlushStats'
get:
$ref: '_common.yaml#/components/schemas/GetStats'
indexing:
$ref: '_common.yaml#/components/schemas/IndexingStats'
mappings:
$ref: '#/components/schemas/MappingStats'
merges:
$ref: '_common.yaml#/components/schemas/MergesStats'
shard_path:
$ref: '#/components/schemas/ShardPath'
query_cache:
$ref: '#/components/schemas/ShardQueryCache'
recovery:
$ref: '_common.yaml#/components/schemas/RecoveryStats'
refresh:
$ref: '_common.yaml#/components/schemas/RefreshStats'
request_cache:
$ref: '_common.yaml#/components/schemas/RequestCacheStats'
retention_leases:
$ref: '#/components/schemas/ShardRetentionLeases'
routing:
$ref: '#/components/schemas/ShardRouting'
search:
$ref: '_common.yaml#/components/schemas/SearchStats'
segments:
$ref: '_common.yaml#/components/schemas/SegmentsStats'
seq_no:
$ref: '#/components/schemas/ShardSequenceNumber'
store:
$ref: '_common.yaml#/components/schemas/StoreStats'
translog:
$ref: '_common.yaml#/components/schemas/TranslogStats'
warmer:
$ref: '_common.yaml#/components/schemas/WarmerStats'
bulk:
$ref: '_common.yaml#/components/schemas/BulkStats'
shards:
type: object
additionalProperties:
type: object
shard_stats:
$ref: '#/components/schemas/ShardsTotalStats'
indices:
$ref: '#/components/schemas/IndicesStats'
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
MappingStats:
type: object
properties:
total_count:
type: number
total_estimated_overhead:
$ref: '_common.yaml#/components/schemas/ByteSize'
total_estimated_overhead_in_bytes:
type: number
required:
- total_count
- total_estimated_overhead_in_bytes
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
ShardQueryCache:
type: object
properties:
cache_count:
type: number
cache_size:
type: number
evictions:
type: number
hit_count:
type: number
memory_size_in_bytes:
type: number
miss_count:
type: number
total_count:
type: number
required:
- cache_count
- cache_size
- evictions
- hit_count
- memory_size_in_bytes
- miss_count
- total_count
ShardRetentionLeases:
type: object
properties:
primary_term:
type: number
version:
$ref: '_common.yaml#/components/schemas/VersionNumber'
leases:
type: array
items:
$ref: '#/components/schemas/ShardLease'
required:
- primary_term
- version
- leases
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
- timestamp
- source
ShardRouting:
type: object
properties:
node:
type: string
primary:
type: boolean
relocating_node:
oneOf:
- type: string
- nullable: true
type: string
state:
$ref: '#/components/schemas/ShardRoutingState'
required:
- node
- primary
- state
ShardRoutingState:
type: string
enum:
- UNASSIGNED
- INITIALIZING
- STARTED
- RELOCATING
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
IndexMetadataState:
type: string
enum:
- open
- close