Initialize the Entity Store
Body Required
Schema for the entity store initialization
-
fieldHistoryLength integer
The number of historical values to keep for each field.
Default value is
10
. -
filter string
-
indexPattern string
POST /api/entity_store/enable
curl \
-X POST https://localhost:5601/api/entity_store/enable \
-H "Content-Type: application/json; Elastic-Api-Version=2023-10-31"
Request examples
{
"fieldHistoryLength": 10,
"filter": "string",
"indexPattern": "string"
}
Response examples (200)
{
"engines": [
{
"error": {},
"fieldHistoryLength": 42,
"filter": "string",
"indexPattern": "string",
"status": "installing",
"type": "user"
}
],
"succeeded": true
}