-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathfleet.global_checkpoints.json
50 lines (50 loc) · 1.47 KB
/
fleet.global_checkpoints.json
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
{
"fleet.global_checkpoints": {
"documentation": {
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/current/get-global-checkpoints.html",
"description": "Returns the current global checkpoints for an index. This API is design for internal use by the fleet server project."
},
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"],
"content_type": ["application/json"]
},
"url": {
"paths": [
{
"path": "/{index}/_fleet/global_checkpoints",
"methods": ["GET"],
"parts": {
"index": {
"type": "string",
"description": "The name of the index."
}
}
}
]
},
"params": {
"wait_for_advance": {
"type": "boolean",
"description": "Whether to wait for the global checkpoint to advance past the specified current checkpoints",
"default": "false"
},
"wait_for_index": {
"type": "boolean",
"description": "Whether to wait for the target index to exist and all primary shards be active",
"default": "false"
},
"checkpoints": {
"type": "list",
"description": "Comma separated list of checkpoints",
"default": ""
},
"timeout": {
"type": "time",
"description": "Timeout to wait for global checkpoint to advance",
"default": "30s"
}
}
}
}