您好,登錄后才能下訂單哦!
環境 : pyhton3
加載模塊 from elasticsearch import Elasticsearch 連接ES es = Elasticsearch(["172.30.6.12"]) 查詢 res = es.search(index="test-index", body={"query":{"match_all":{}}}) # 注 index 后面的是索引的名字 # 查詢請求主機是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
忽略400,404
es.indices.delete(index='test-index', ignore=[400, 404])
過濾
res=es.search(index='packetbeat-*', filter_path=['hits.hits._source'])
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。