Commit e9b6130b by 陈森彬

更改es查询语法

parent 88a0d0da
Showing with 10 additions and 5 deletions
#!/usr/bin/env python
# -*- coding:utf-8 -*-
import requests
from datetime import datetime, timedelta
from elasticsearch import Elasticsearch
# from elasticsearch import Elasticsearch
ichunt_elk = Elasticsearch(host="172.18.137.50", port=9200, timeout=20)
# ichunt_elk = Elasticsearch(host="172.18.137.50", port=9200, timeout=20)
task_mapping = {
'arg': 'arrow sku更新',
'arc': 'arrow新品采集',
......@@ -120,8 +120,13 @@ def get_task_error_rate(time_range=30, error_rate=30):
}
}
}
response = ichunt_elk.search(index=index, doc_type='doc', body=query)
buckets = response['aggregations']['taskCodes']['buckets']
# response = ichunt_elk.search(index=index, doc_type='doc', body=query)
# buckets = response['aggregations']['taskCodes']['buckets']
url = "http://172.18.137.50:9200/" + index + "/_search"
res = requests.post(url, json=query)
# value = response['aggregations']['avgFailRate']['value']
buckets = res.json()['aggregations']['avgFailRate']['value'] if res.status_code != 200 and res.json()['aggregations']['taskCodes']['buckets'] else ""
if buckets:
return gen_msg(time_range, buckets)
return
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment