Checking Elasticsearch Index List

Tadashi Shigeoka ·  Thu, May 17, 2018

I researched how to check the list of indexes to verify that Elasticsearch indexes are being created properly through programs, so I’ll introduce the method.

Elasticsearch | エラスティックサーチ

Checking Elasticsearch Index List

curl -XGET 'localhost:9200/_aliases?pretty'

Deleting Elasticsearch Indexes

While I’m at it, I’ll also write how to delete indexes.

curl -X DELETE 'localhost:9200/'

That’s all from the Gemba where I want to check the Elasticsearch index list.