forked from opensearch-project/opensearch-api-specification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcat.health.yaml
58 lines (58 loc) · 1.7 KB
/
cat.health.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
openapi: 3.1.0
info:
title: Schemas of cat.health category
description: Schemas of cat.health category
version: 1.0.0
paths: {}
components:
schemas:
HealthRecord:
type: object
properties:
epoch:
$ref: '_common.yaml#/components/schemas/StringifiedEpochTimeUnitSeconds'
timestamp:
$ref: '_common.yaml#/components/schemas/TimeOfDay'
cluster:
description: cluster name
type: string
status:
description: health status
type: string
node.total:
description: total number of nodes
type: string
node.data:
description: number of nodes that can store data
type: string
shards:
description: total number of shards
type: string
pri:
description: number of primary shards
type: string
relo:
description: number of relocating nodes
type: string
init:
description: number of initializing nodes
type: string
unassign:
description: number of unassigned shards
type: string
pending_tasks:
description: number of pending tasks
type: string
max_task_wait_time:
description: wait time of longest task pending
type: string
active_shards_percent:
description: active number of shards in percent
type: string
discovered_cluster_manager:
description: cluster manager is discovered or not
type: string
discovered_master:
x-version-removed: '2.0'
description: cluster manager is discovered or not
type: string