Get the status of the Entity Store
Query parameters
-
include_components boolean
If true returns a detailed status of the engine including all it's components
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",
"components": [
{
"errors": [
{
"message": "string",
"title": "string"
}
],
"health": "green",
"id": "string",
"installed": true,
"resource": "entity_engine"
}
]
}
],
"status": "not_installed"
}