forked from cms-sw/cms-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
es_utils.py
executable file
·144 lines (131 loc) · 5.53 KB
/
es_utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#!/usr/bin/env python
import sys,urllib2 , json
from datetime import datetime
from os.path import exists
from os import getenv
#Function to store data in elasticsearch
def resend_payload(hit, passwd_file="/data/secrets/github_hook_secret_cmsbot"):
return send_payload(hit["_index"], hit["_type"], hit["_id"],json.dumps(hit["_source"]),passwd_file)
def es_get_passwd(passwd_file=None):
for psfile in [passwd_file, getenv("CMS_ES_SECRET_FILE",None), "/data/secrets/cmssdt-es-secret", "/build/secrets/cmssdt-es-secret", "/var/lib/jenkins/secrets/cmssdt-es-secret", "/data/secrets/github_hook_secret_cmsbot"]:
if not psfile: continue
if exists(psfile):
passwd_file=psfile
break
try:
return open(passwd_file,'r').read().strip()
except Exception as e:
print "Couldn't read the secrets file" , str(e)
return ""
def send_payload_new(index,document,id,payload,es_server,passwd_file=None):
index = 'cmssdt-' + index
passwd=es_get_passwd(passwd_file)
if not passwd: return False
url = "https://%s/%s/%s/" % (es_server,index,document)
if id: url = url+id
passman = urllib2.HTTPPasswordMgrWithDefaultRealm()
passman.add_password(None,url, 'cmssdt', passwd)
auth_handler = urllib2.HTTPBasicAuthHandler(passman)
opener = urllib2.build_opener(auth_handler)
try:
urllib2.install_opener(opener)
content = urllib2.urlopen(url,payload)
except Exception as e:
print "ERROR:",url,str(e)
return False
print "OK ",index
return True
def send_payload_old(index,document,id,payload,passwd_file=None):
passwd=es_get_passwd(passwd_file)
if not passwd: return False
url = "http://%s/%s/%s/" % ('cmses-master02.cern.ch:9200',index,document)
if id: url = url+id
passman = urllib2.HTTPPasswordMgrWithDefaultRealm()
passman.add_password(None,url, 'elasticsearch', passwd)
auth_handler = urllib2.HTTPBasicAuthHandler(passman)
opener = urllib2.build_opener(auth_handler)
try:
urllib2.install_opener(opener)
content = urllib2.urlopen(url,payload)
except Exception as e:
print "ERROR: ",url, str(e)
return False
print "OK ",index
return True
def delete_hit(hit,passwd_file=None):
passwd=es_get_passwd(passwd_file)
if not passwd: return False
url = "http://%s/%s/%s/%s" % ('cmses-master02.cern.ch:9200',hit["_index"], hit["_type"], hit["_id"])
passman = urllib2.HTTPPasswordMgrWithDefaultRealm()
passman.add_password(None,url, 'elasticsearch', passwd)
auth_handler = urllib2.HTTPBasicAuthHandler(passman)
opener = urllib2.build_opener(auth_handler)
try:
urllib2.install_opener(opener)
request = urllib2.Request(url)
request.get_method = lambda: 'DELETE'
content = urllib2.urlopen(request)
except Exception as e:
print "ERROR: ",url, str(e)
return False
print "DELETE:",hit["_id"]
return True
def send_payload(index,document,id,payload,passwd_file="/data/secrets/github_hook_secret_cmsbot"):
send_payload_new(index,document,id,payload,'es-cmssdt.cern.ch:9203')
return send_payload_old(index,document,id,payload,passwd_file)
def get_payload(url,query):
passman = urllib2.HTTPPasswordMgrWithDefaultRealm()
passman.add_password(None,url, 'kibana', 'kibana')
auth_handler = urllib2.HTTPBasicAuthHandler(passman)
opener = urllib2.build_opener(auth_handler)
try:
urllib2.install_opener(opener)
content = urllib2.urlopen(url,query)
return content.read()
except Exception as e:
print "Couldn't send data to elastic search" , str(e)
return ""
def format(s, **kwds): return s % kwds
def es_query(index,query,start_time,end_time,page_start=0,page_size=100000,timestamp_field="@timestamp",lowercase_expanded_terms='false', es_host='http://cmses-master02.cern.ch:9200'):
query_url='%s/%s/_search' % (es_host, index)
query_tmpl = """{
"query": {
"filtered": {
"query": {"bool": {"should": [{"query_string": {"query": "%(query)s","lowercase_expanded_terms": %(lowercase_expanded_terms)s}}]}},
"filter": {"bool": {"must": [{"range": {"%(timestamp_field)s": {"from": %(start_time)s,"to": %(end_time)s}}}]}}
}
},
"from": %(page_start)s,
"size": %(page_size)s
}"""
query_str = format(query_tmpl, query=query,start_time=start_time,end_time=end_time,page_start=page_start,page_size=page_size,timestamp_field=timestamp_field,lowercase_expanded_terms=lowercase_expanded_terms)
return json.loads(get_payload(query_url, query_str))
def es_workflow_stats(es_hits,rss='rss_75', cpu='cpu_75'):
wf_stats = {}
for h in es_hits['hits']['hits']:
hit = h["_source"]
wf = hit["workflow"]
step = hit["step"]
if not wf in wf_stats: wf_stats[wf]={}
if not step in wf_stats[wf]:wf_stats[wf][step]=[]
wf_stats[wf][step].append([hit['time'], hit[rss], hit[cpu], hit["rss_max"], hit["cpu_max"]])
for wf in wf_stats:
for step in wf_stats[wf]:
hits = wf_stats[wf][step]
thits = len(hits)
time_v = int(sum([h[0] for h in hits])/thits)
rss_v = int(sum([h[1] for h in hits])/thits)
cpu_v = int(sum([h[2] for h in hits])/thits)
rss_m = int(sum([h[3] for h in hits])/thits)
cpu_m = int(sum([h[4] for h in hits])/thits)
if rss_v<1024: rss_v = rss_m
if cpu_v<10: cpu_v = cpu_m
wf_stats[wf][step] = { "time" : time_v,
"rss" : rss_v,
"cpu" : cpu_v,
"rss_max" : rss_m,
"cpu_max" : cpu_m,
"rss_avg" : int((rss_v+rss_m)/2),
"cpu_avg" : int((cpu_v+cpu_m)/2)
}
return wf_stats