Retrieve the status of detection alert migrations

POST /api/detection_engine/signals/migration_status

Retrieve indices that contain detection alerts of a particular age, along with migration information for each of those indices.

Query parameters

  • from string(date-math) Required

    Maximum age of qualifying detection alerts

Responses

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)
{
  "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
}