gpt4 book ai didi

curl - Elasticsearch curl查询:具有0个文档的索引列表

转载 作者:行者123 更新时间:2023-12-02 23:34:12 27 4
gpt4 key购买 nike

我正在尝试获取具有0个文档的所有Elasticsearch索引的列表。

我的方法是查询_cat/indices

curl -GET 'http://localhost:9200/_cat/indices' -d '{
"query": { "match": { "docs.count": "0" } }
}'

但这似乎不起作用,因为我看到列出的索引超过0个文档。
Cat indices文档可以在这里找到: https://www.elastic.co/guide/en/elasticsearch/reference/1.6/cat-indices.html

有什么建议么?

谢谢。

最佳答案

我觉得awk和cat API将是一个更好的选择。您可以使用以下命令获取所需内容-

curl -GET 'http://localhost:9200/_cat/indices' 2>/dev/null | awk ' ($6 == 0) {print $3}'

关于curl - Elasticsearch curl查询:具有0个文档的索引列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33397025/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com