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을 수정해야 한다.

 


https://qiita.com/NAO_MK2/items/2d03d9db1cd7b0ceae04

Posted by '김용환'
,