Initiate a detection alert migration Deprecated

POST /api/detection_engine/signals/migration

Spaces method and path for this operation:

post /s/{space_id}/api/detection_engine/signals/migration

Refer to Spaces for more information.

Initiate a migration of detection alerts. Migrations are initiated per index. While the process is neither destructive nor interferes with existing data, it may be resource-intensive. As such, it is recommended that you plan your migrations accordingly.

application/json

Body Required

Alerts migration parameters

  • index array[string(nonempty)] Required

    A string that does not contain only whitespace characters

    At least 1 element. Minimum length of each is 1.

  • requests_per_second integer

    Minimum value is 1.

  • size integer

    Minimum value is 1.

  • slices integer

    Minimum value is 1.

Responses

POST /api/detection_engine/signals/migration
curl \
 --request POST 'https://localhost:5601/api/detection_engine/signals/migration' \
 --header "Authorization: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"index":["string"],"requests_per_second":42,"size":42,"slices":42}'