summaryrefslogtreecommitdiff
path: root/samplejobs/MetricsChecker.py
blob: c0254b3f4595a075a71068df6edd9c6fbd2b2527 (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
38
39
40
#!/usr/bin/env python

from builtins import str
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://collector.ritter.vg/recent/relay-descriptors/consensuses/"
        try:
            r = requests.get(url)
            this_consensus = str(ys.year) + "-" + str(ys.month).zfill(2) + "-" + str(ys.day).zfill(2) + "-12-00-00-consensus" 
            if this_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)