表題の件について。いつも忘れてしまうのでメモ。
■ 環境
- Elasticsearch
■ /_cat/indices
indexの一覧を`curl`で取得するには下記でできる。
$ curl -s 'http://localhost:9200/_cat/indices'
数値がいくつか出てくるのだが、それぞれの項目はなんだったか忘れてしまうことがあるので何の項目かヘッダーが出たような気がするんだけど…と。
下記でヘッダーも表示できる。
$ curl -s 'http://localhost:9200/_cat/indices?v'
この`?v`を忘れてしまう事が多々ある。
List All Indices
https://www.elastic.co/guide/en/elasticsearch/reference/current/_list_all_indices.html
- health
- status
- index
- uuid
- pri
- rep
- docs.count
- docs.deleted
- store.size
- pri.store.size
以上。