Get the migration reindexing status
Technical preview
Get the status of a migration reindex attempt for a data stream or index.
Path parameters
-
index
string | array[string] Required The index or data stream name.
GET
/_migration/reindex/{index}/_status
curl \
--request GET http://api.example.com/_migration/reindex/{index}/_status \
--header "Authorization: $API_KEY"
Response examples (200)
{
"": 42.0,
"complete": true,
"total_indices_in_data_stream": 42.0,
"total_indices_requiring_upgrade": 42.0,
"successes": 42.0,
"in_progress": [
{
"index": "string",
"total_doc_count": 42.0,
"reindexed_doc_count": 42.0
}
],
"pending": 42.0,
"errors": [
{
"index": "string",
"message": "string"
}
],
"exception": "string"
}