码迷,mamicode.com
首页 > 其他好文 > 详细

elastic search 常用查询

时间:2018-08-07 20:37:14      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:filter   url   常用   col   ping   query   app   class   bool   

1.查询mapping

curl -X GET "10.0.38.111:1200/metric_data_bus_2018-08-07/_mapping/data_bus?pretty"

2.filter查询

curl -X GET "10.0.38.111:1200/metric_d_2018-08-07/_search?pretty&size=1" -H Content-Type: application/json -d{
"query": {
"bool": {
"must": { "match_all": {} },
"filter": [{
"range": {
"data.store_latency": {
"gte": 200
}
}
},{
"range": {
"data.parser_latency": {
"gte": 60000
}
}
}]
}
}
}

 

elastic search 常用查询

标签:filter   url   常用   col   ping   query   app   class   bool   

原文地址:https://www.cnblogs.com/zhengwenqiang/p/9438653.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!