-
Notifications
You must be signed in to change notification settings - Fork 30
Open
Labels
Description
Starting with ES 6.x only a single index type is supported. When Kibana creates index pattern it is stored like this:
{
"_index": ".kibana_1",
"_type": "doc",
"_id": "index-pattern:85d641e0-debc-11e9-86f7-e50fa46f6de3",
"_score": 1.0,
"_source": {
"index-pattern": {
"title": "project*",
"timeFieldName": "@timestamp",
"fields": "[{\"name\":\"@timestamp\",\"type\":\"date\",\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},
...
{\"name\":\"viaq_msg_id\",\"type\":\"string\",\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true}]"
},
"type": "index-pattern",
"updated_at": "2019-09-24T11:14:50.445Z"
}
}Notice:
- the document is stored under the
docindex type - the index pattern object is nested under the
index-patternfield - introduction of the
"type": "index-pattern"field - at some point this needs to be reflected in elasticsearch/utils/es_load_kibana_ui_objects script
This is related to #99
Reactions are currently unavailable