美文网首页
elasticsearch 获取最新一次数据(sort by @

elasticsearch 获取最新一次数据(sort by @

作者: tglmm | 来源:发表于2020-07-08 10:35 被阅读0次

    从es获取数据最新一次数据

    import json
    import requests
    es = "192.168.26.133:9200"
    index = "xxx_log_monitor-2020-07-08"
    url = "http://{}/{}/_search".format(es,index)
    data = {
      "query": {
        "match_all": {}
      },
      "size": "1",
      "sort": [
        {
          "@timestamp": {
            "order": "desc"
        }
        }
      ]
    }
    headers = {
        "Content-Type": "application/json; charset=UTF-8"
    }
    resp = requests.post(url=url,data=json.dumps(data),headers=headers)
    print(resp.text)
    

    相关文章

      网友评论

          本文标题:elasticsearch 获取最新一次数据(sort by @

          本文链接:https://www.haomeiwen.com/subject/lspqcktx.html