Retrieve the status of detection alert migrations
Retrieve indices that contain detection alerts of a particular age, along with migration information for each of those indices.
Query parameters
-
Maximum age of qualifying detection alerts
Responses
-
200 application/json; Elastic-Api-Version=2023-10-31
Successful response
-
400 application/json; Elastic-Api-Version=2023-10-31
Invalid input data response
-
401 application/json; Elastic-Api-Version=2023-10-31
Unsuccessful authentication response
-
500 application/json; Elastic-Api-Version=2023-10-31
Internal server error response
POST /api/detection_engine/signals/migration_status
curl \
-X POST https://localhost:5601/api/detection_engine/signals/migration_status?from=string
Response examples (200)
{
"indices": [
{
"index": "string",
"is_outdated": true,
"migrations": [
{
"id": "string",
"status": "success",
"updated": "2024-05-04T09:42:00+00:00",
"version": 42
}
],
"signal_versions": [
{
"count": 42,
"version": 42
}
],
"version": 42
}
]
}
Response examples (400)
Security_detections_api_platformerrorresponse (generated)
{
"error": "string",
"message": "string",
"statusCode": 42
}
{
"message": "string",
"status_code": 42
}
Response examples (401)
{
"error": "string",
"message": "string",
"statusCode": 42
}
Response examples (500)
{
"message": "string",
"status_code": 42
}