Spaces method and path for this operation:
get /s/{space_id}/api/entity_store/engines
Refer to Spaces for more information.
Get a list of all installed entity engines and their current status.
GET
/api/entity_store/engines
curl \
--request GET 'https://<KIBANA_URL>/api/entity_store/engines' \
--header "Authorization: $API_KEY"
Response examples (200)
Returns a list with one running host engine and one stopped user engine.
{
"count": 2,
"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": "stopped",
"timeout": "180s",
"timestampField": "@timestamp",
"type": "user"
}
]
}