学习是一个逐步发现自己无知的过程!

es查询操作

无密码查询

curl  http://10.1.2.5:9200/es-log*

加密码查询

curl  http://user:password@10.1.2.5:9200/es-log*

当前所有index

curl  http://user:password@10.1.2.5:9200/es-log*

查询指定index当前数据量

curl http://user:password@10.1.2.5:9200/es-log/_count?pretty

删除index

curl -X DELETE http://user:password@10.1.2.5:9200/es-log

查询近7天数据量

curl -XGET 'http://user:password@10.1.2.5:9200/es-log/_count' -H 'Content-Type: application/json' -d '
{ "query": { "range": { "@timestamp": { "gte": "now-7d/d", "lte": "now/d" } } } }'

查询最新的一条数据

curl -X GET "http://user:password@10.1.2.5:9200/es-log/_search?pretty=true" -H 'Content-Type: application/json' -d'
{ "query": { "match_all": {} }, "sort": [ {"@timestamp": { "order": "desc" } } ], "size": 1}'
赞(0)
未经允许不得转载:劉大帥 » es查询操作

你的评论可能会一针见血! 抢沙发

登录

找回密码

注册