Get the status of the Entity Store

GET /api/entity_store/status

Responses

  • 200 application/json; Elastic-Api-Version=2023-10-31

    Successful response

    Hide response attributes Show response attributes object
    • engines array[object]
      Hide engines attributes Show engines attributes object
    • status string

      Values are not_installed, installing, running, stopped, or error.

GET /api/entity_store/status
curl \
 -X GET https://localhost:5601/api/entity_store/status
Response examples (200)
{
  "engines": [
    {
      "error": {},
      "fieldHistoryLength": 42,
      "filter": "string",
      "indexPattern": "string",
      "status": "installing",
      "type": "user"
    }
  ],
  "status": "not_installed"
}