Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • operation_modestring Required

      Values are RUNNING, STOPPING, or STOPPED.

GET /_ilm/status
GET _ilm/status
resp = client.ilm.get_status()
const response = await client.ilm.getStatus();
response = client.ilm.get_status
$resp = $client->ilm()->getStatus();
curl -X GET -H "Authorization: ApiKey $ELASTIC_API_KEY" "$ELASTICSEARCH_URL/_ilm/status"
Response examples (200)
A successful response when retrieving the current ILM status.
{
  "operation_mode": "RUNNING"
}