赞
踩
查看内容
curl -XGET '246.111.x.x:9200/index_name'
curl -XGET '246.111.x.x:9200/index_name/_search'
curl -X GET "10.10.170.165:31092/your_index_name/_mapping?pretty" --type
curl -s "10.10.170.165:31092/qfrds-vastbase-log-2024.01.19/_search" | jq '.hits.hits[]._source' | tr -d '\n' | jq .
其中 {index_name} 是要查询的 index 名称。
要同时打印多个索引的内容,您可以使用 Elasticsearch 的 Multi Search API。以下是一个示例的 curl 命令:
curl -X POST "10.10.170.165:31092/\_msearch" -H 'Content-Type: application/json' -d'
{ "index": "qfrds-vastbase-log-2024.01.19" }
{ "query": { "match\_all": {} }, "size": 10 }
{ "index": "qfrds-vastbase-log-2024.01.20" }
{ "query": { "match\_all": {} }, "size": 10 }
'
在上面的示例中,我们通过多个 { "index": "索引名" }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。