仅列出ElasticSearch索引名称

时间:2019-06-25 08:35:29

标签: elasticsearch

GET Base64Image(source: uiValues.data[currentData].elements[currentElement].innerElements[currentInnerElement].base64String) 返回ElasticSearch索引的详细列表,包括它们的大小等。

有可能只是获得他们的名字吗?

2 个答案:

答案 0 :(得分:0)

您可以通过指定所需的列来实现:

GET _cat/indices?h=idx

为了找到可用于给定CAT端点的所有列,可以使用help参数:

GET _cat/indices?help

答案 1 :(得分:0)

是的,它有很多选择。

如果您只是在寻找姓名,则下面的内容会有所帮助

GET /_cat/indices?pri&h=index

请参考下面的链接以获取详细说明。

https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-indices.html