GET /_ilm/status
Console
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"
}