List all indexes on ElasticSearch server?

前端 未结 23 1098
被撕碎了的回忆
被撕碎了的回忆 2020-12-12 09:55

I would like to list all indexes present on an ElasticSearch server. I tried this:

curl -XGET localhost:9200/

but it just gives me this:

23条回答
  •  失恋的感觉
    2020-12-12 10:01

    You can query localhost:9200/_status and that will give you a list of indices and information about each. The response will look something like this:

    {
      "ok" : true,
      "_shards" : { ... },
      "indices" : {
        "my_index" : { ... },
        "another_index" : { ... }
      }
    }
    

提交回复
热议问题