Elasticsearch
Kibana - index pattern (5.x, 6.x)관련 내용 변경
'김용환'
2019. 4. 2. 11:35
kibana 5.x에서는 index-pattern id가 index 이름이었는데.
kibana 6.x에서는 index-pattern id가 uuid로 바뀌었다.
키바나 내부 api를 사용해 어떤 save object가 있는지 확인할 수 있다.
curl -s http://kibana.internal.google.io:5601/api/saved_objects/_find?type=index-pattern
{
"type": "index-pattern",
"id": "b1d1bed0-464d-11e9-9577-0b28abc59fe5",
"attributes": {
"title": "google_search_admin*",
"timeFieldName": "customer",
"fields": "[{\"name\":\"_id\",\"type\":\
...
}
kibana index 변경을 하고 싶으면 index_pattern을 수정해야 한다.