Spaces method and path for this operation:
get /s/{space_id}/api/entity_store/status
Refer to Spaces for more information.
Get the overall Entity Store status and per-engine statuses, optionally including component-level health details.
GET
/api/entity_store/status
curl \
--request GET 'https://<KIBANA_URL>/api/entity_store/status' \
--header "Authorization: $API_KEY"
Response examples (200)
The Entity Store is running with both host and user engines started and using default settings.
{
"engines": [
{
"delay": "1m",
"fieldHistoryLength": 10,
"frequency": "1m",
"indexPattern": "",
"lookbackPeriod": "24h",
"status": "started",
"timeout": "180s",
"timestampField": "@timestamp",
"type": "host"
},
{
"delay": "1m",
"fieldHistoryLength": 10,
"frequency": "1m",
"indexPattern": "",
"lookbackPeriod": "24h",
"status": "started",
"timeout": "180s",
"timestampField": "@timestamp",
"type": "user"
}
],
"status": "running"
}