2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Kibana6.2でindex patternとしてエイリアスを使用する

Posted at

公式のissueにもありますが、kibana6.2.xだとindex patternとしてエイリアスを利用できません。古いバージョンだったら利用できたのに...

6.3.xでは利用できるようになりましたが、運悪くこのバージョンに当たった場合はDev Toolsから直接指定して回避できます。

PUT .kibana/doc/index-pattern:<エイリアス名>
{
    "index-pattern": {
      "title": "<エイリアス名>"
    },
    "type": "index-pattern"
}

index patternを一度も作ったことのない状態で↑をやってしまうとkibanaの動作がおかしくなるので注意。

その場合 .kibana indexをDELETEすると良いです。

2
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?