Returns information about the status of a snapshot Added in 7.8.0
Path parameters
-
A repository name
-
A comma-separated list of snapshot names
Query parameters
-
master_timeout string
Explicit operation timeout for connection to master node
GET /_snapshot/{repository}/{snapshot}/_status
curl \
-X GET http://api.example.com/_snapshot/{repository}/{snapshot}/_status
Response examples (200)
{
"snapshots": [
{
"include_global_state": true,
"indices": {
"additionalProperty1": {
"shards": {
"additionalProperty1": {},
"additionalProperty2": {}
},
"shards_stats": {
"done": 42.0,
"failed": 42.0,
"finalizing": 42.0,
"initializing": 42.0,
"started": 42.0,
"total": 42.0
},
"stats": {
"incremental": {},
"time": "string",
"total": {}
}
},
"additionalProperty2": {
"shards": {
"additionalProperty1": {},
"additionalProperty2": {}
},
"shards_stats": {
"done": 42.0,
"failed": 42.0,
"finalizing": 42.0,
"initializing": 42.0,
"started": 42.0,
"total": 42.0
},
"stats": {
"incremental": {},
"time": "string",
"total": {}
}
}
},
"repository": "string",
"shards_stats": {
"done": 42.0,
"failed": 42.0,
"finalizing": 42.0,
"initializing": 42.0,
"started": 42.0,
"total": 42.0
},
"snapshot": "string",
"state": "string",
"stats": {
"incremental": {
"file_count": 42.0,
"size_in_bytes": 42.0
},
"": 42.0,
"time": "string",
"total": {
"file_count": 42.0,
"size_in_bytes": 42.0
}
},
"uuid": "string"
}
]
}