1. 程式人生 > >python elasticsearch模塊使用

python elasticsearch模塊使用

python elk

環境 : pyhton3

加載模塊
from elasticsearch import Elasticsearch

連接ES
es = Elasticsearch(["172.30.6.12"])


查詢

res = es.search(index="test-index", body={"query":{"match_all":{}}})

# 查詢請求主機是ai.baidu.com 所有信息
res = es.search(index="packetbeat-*", body={'query':{'match':{'http.request.headers.host':'ai.baidu.com'}}})



res = es.search(index="test-index", body={'query':{'match':{'any':'data'}}}) #獲取any=data的所有值


參考鏈接:https://www.cnblogs.com/yxpblog/p/5141738.html




python elasticsearch模塊使用