forked from alisw/ali-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
push-dash.py
executable file
·155 lines (138 loc) · 5.37 KB
/
push-dash.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
145
146
147
148
149
150
151
152
153
154
155
#!/usr/bin/env python
from __future__ import print_function
import os
import re
import requests, urllib3
import subprocess
import logging
import traceback
from os.path import expanduser
from tempfile import mkdtemp
from collections import deque
from datetime import datetime, timedelta
from subprocess import Popen
from sys import exit
from time import sleep
from base64 import b64decode
from ci.metagit import MetaGit,MetaGitException
class InfluxDBStreamer():
def __init__(self, baseurl):
if baseurl.startswith("insecure_https:"):
self.ssl_verify = False
self.baseurl = baseurl[9:]
else:
self.ssl_verify = True
self.baseurl = baseurl
if "#" in self.baseurl:
self.baseurl,self.database = self.baseurl.split("#", 1)
else:
self.database = ""
self.buffer = deque("", 20)
self.log = logging.getLogger("influxdb")
self.log.setLevel(logging.DEBUG if os.environ.get("MON_DEBUG", "0") == "1" else logging.INFO)
def __call__(self, series, tags, fields):
if not fields:
self.log.debug("Nothing to send, skipping")
return
# Line protocol: https://docs.influxdata.com/influxdb/v1.0/write_protocols/line_protocol_tutorial/
fields = dict(map(lambda (k,v): (k, '"%s"'%v if isinstance(v, basestring) else v), fields.iteritems()))
data_string = series + "," + \
",".join(["%s=%s" % (x,tags[x]) for x in tags]) + " " + \
",".join(["%s=%s" % (x,fields[x]) for x in fields]) + " " + \
str(int((datetime.utcnow()-datetime.utcfromtimestamp(0)).total_seconds()*1000000000))
self.buffer.append(data_string)
self.log.debug("Appended (%d in queue now): %s" % (len(self.buffer), data_string))
def dump(self):
self.log.debug("Dumping:\n---\n%s\n---" % "\n".join(self.buffer))
try:
r = requests.post(self.baseurl+"/write",
headers={ "Content-type": "application/octet-stream",
"Accept": "text/plain" },
params={ "db": self.database },
data="\n".join(self.buffer).encode("utf-8"),
timeout=5,
verify=self.ssl_verify)
r.raise_for_status()
self.buffer.clear()
return True
except requests.exceptions.RequestException as e:
self.log.error("Error sending data: %s" % e)
return False
def quench(f):
def wrap(*x, **y):
try:
return f(*x, **y)
except Exception as e:
log.error("%s failed with %s:" % (f.__name__, type(e).__name__))
traceback.print_exc()
return None
return wrap
def getout(cmd):
with open(os.devnull) as dn:
p = Popen(cmd if type(cmd) is list else cmd.split(" "), stdout=subprocess.PIPE, stderr=dn)
out = p.communicate()[0]
code = p.returncode
return (out,code)
@quench
def getdf(host, vol):
out,rc = getout("ssh -F /dev/null -oStrictHostKeyChecking=no -oPreferredAuthentications=publickey {keys} {host} df -k {vol} | tail -n1".format(keys=ssh_keys_opt, host=host, vol=vol))
if rc != 0:
raise Exception("Command returned an error: %d" % rc)
return dict(zip([ "used", "avail" ],
[ int(x) for x in re.split("\s+", out)[2:4] ]))
@quench
def getgithubreposize(repo):
global git
return git.get_repo_info(repo).size
if __name__ == "__main__":
logging.basicConfig()
logging.getLogger("requests").setLevel(logging.WARNING)
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
log = logging.getLogger("monitor")
log.setLevel(logging.DEBUG if os.environ.get("MON_DEBUG", "0") == "1" else logging.INFO)
git = None
try:
pause = int(os.environ["MON_PAUSE"])
except:
pause = 600
# Initialize from environment
try:
mon = InfluxDBStreamer(os.environ["MON_INFLUX_URL"])
except KeyError:
log.fatal("You should set MON_INFLUX_URL to something like \"insecure_https://<USER>:<PASS>@dbod-hltmon.cern.ch:8082#<TABLE>\"")
exit(1)
try:
git = MetaGit.init(backend="GitHub", token=os.environ["MON_GITHUB_TOKEN"])
except KeyError:
log.fatal("You should set MON_GITHUB_TOKEN to a valid GitHub token")
exit(1)
count = 1
ssh_key_dir = mkdtemp()
ssh_keys_opt = ""
while True:
varname = "MON_SSH_KEY_%d" % count
if not varname in os.environ:
break
fn = os.path.join(ssh_key_dir, "key_%d" % count)
fd = os.open(fn, os.O_CREAT|os.O_WRONLY, 0600)
log.debug("Writing SSH key to %s" % fn)
os.write(fd, b64decode(os.environ[varname]))
os.close(fd)
ssh_keys_opt += " -i" + fn
count = count+1
ssh_keys_opt = ssh_keys_opt.strip()
del fn
del fd
while True:
# Monitoring loop
# Relevant storage
mon(series="storage", tags={"storagename": "repo"}, fields=getdf("root@alibuild03", "/build/reports/repo"))
mon(series="storage", tags={"storagename": "jenkins"}, fields=getdf("root@alijenkins01", "/var/lib/jenkins"))
mon(series="storage", tags={"storagename": "macpromat"}, fields=getdf("alibuild@macpromat", "/build"))
mon(series="storage", tags={"storagename": "alimacx06"}, fields=getdf("admin@alimacx06", "/build"))
# GitHub repository size
for repo in ("alisw/AliPhysics", "alisw/AliRoot", "AliceO2Group/AliceO2"):
mon(series="repo", tags={"reponame": repo}, fields={"size": getgithubreposize(repo)})
mon.dump()
log.debug("Sleeping %d seconds" % pause)
sleep(pause)