blob: 1d29a810f4269b235cdf88f2038c9cd0fa546e92 (
plain)
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
|
#!/usr/bin/env python
import os
import base64
import logging
import datetime
import requests
import JobBase
class MetricsChecker(JobBase.JobBase):
def executeEvery(self):
return JobBase.JobFrequency.DAY_NOON
def notifyOnFailureEvery(self):
return JobBase.JobFailureNotificationFrequency.EVERYTIME
def execute(self):
body = ""
ys = datetime.date.today() - datetime.timedelta(hours=24)
url = "https://example.com/out/relay-descriptors/consensus/" + str(ys.year) + "/" + str(ys.month).zfill(2) + "/" + str(ys.day).zfill(2) + "/"
try:
r = requests.get(url)
if "12-00-00-consensus" in r.content:
pass
else:
body = "Could not find 12-00-00-consensus in the body:\n\n" + r.content
except Exception as e:
body = "Caught an exception:\n\n" + str(e)
if body:
logging.warn("tor metrics is broken?")
logging.warn(body)
self.logdetails = body
return False
else:
return True
def onFailure(self):
return self.sendEmail("tor metrics is broken?", self.logdetails)
|