forked from ABORGT/PylertAlertManager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalertmanager.py
171 lines (130 loc) · 4.54 KB
/
alertmanager.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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
from requests.compat import urljoin
import requests
import logging
import json
import copy
class AlertManager(object):
def __init__(self, host, port=9093, req_obj=None):
self.hostname = host
self.port = port
self._req_obj = req_obj
@property
def request_session(self):
"""
This property is intended to be called by the _make_request method
so we are always working with request.Sessions, allowing good
customization for end users
:return: _req_obj: a Request session object to allow developer
manipulation
"""
if not self._req_obj:
self._req_obj = requests.Session()
return self._req_obj
def _make_request(self, method="GET", route="/", **kwargs):
_host = "{}:{}".format(self.hostname, self.port)
route = urljoin(_host, route)
r = self.request_session.request(method, route, **kwargs)
return r
def get_alerts(self):
# http://10.255.238.146:9093/api/v1/alerts
pass
def post_alerts(self):
# http://10.255.238.146:9093/api/v1/alerts
pass
def get_status(self):
# http://10.255.238.146:9093/api/v1/status
pass
def get_receivers(self):
# http://10.255.238.146:9093/api/v1/receivers
pass
def get_alert_groups(self):
# http://10.255.238.146:9093/api/v1/alerts/groups
pass
def get_silence(self):
# http://10.255.238.146:9093/api/v1/silences
# http://10.255.238.146:9093/api/v1/silence/:id:
pass
def post_silence(self):
# http://10.255.238.146:9093/api/v1/silences
pass
def delete_silence(self):
# http://10.255.238.146:9093/api/v1/silence/:id:
pass
class Alert(object):
def __init__(self, dict_data=None):
# __data_dict is the private dict that powers _raw getters and setters
self.__data_dict = {}
self._raw = dict_data
if not self._validate():
logging.warning("This Alert object doesn't validate, feel free to "
"adjust but you will be blocked on POSTing")
@property
def _raw(self):
return self.__data_dict
@_raw.setter
def _raw(self, dict_data):
__local_data_dict = copy.deepcopy(self.__data_dict)
__local_data_dict.update(dict_data)
if not self._validate(__local_data_dict):
logging.warning("This Alert object doesn't validate, feel free to "
"adjust but you will be blocked on POSTing")
else:
self.__data_dict.update(dict_data)
for key in self.alert_attributes:
setattr(self, key, self._raw[key])
@property
def alert_attributes(self):
return self._raw.keys()
@classmethod
def from_dict(cls, data):
try:
data = json.loads(data)
except:
pass
return cls(dict_data=data)
def _validate(self, data=None):
# logic to check if the dictionary is good
# If data none, rely on self._raw, if data is there validate that data
if self._raw == "invalid":
return False
return True
def jsonify(self, force=False):
# Standardize how we convert this to Postable data... exception on
# validation, but allow overrides just in case
if not self._validate() and not force:
raise ValueError('Data dict is invalid')
return json.dumps(self._raw)
if __name__ == '__main__':
test_data = {
"labels":{
"alertname":"TylerCTest2",
"dev":"test",
"instance":"its fake2",
"severity":"warning"
},
"annotations":{
"description":"Please don't break monitor wide this time",
"info":"Tyler coil did this",
"summary":"Please just ignore this alert"
},
"startsAt":"2018-04-18T11:22:44.44444444-05:00",
"endsAt":"2018-04-18T11:22:44.44444444-05:00",
"generatorURL":"",
"status":{
"state":"unprocessed",
"silencedBy":[],
"inhibitedBy":[]
},
"receivers":[
"slack-bottesting"
],
"fingerprint":"a88192ddf88700bd"
}
test = Alert.from_dict(test_data)
print(test)
print(dir(test))
print(test.endsAt)
# I don't like that this is the functionality to update an existing
# alert... i have some ideas, but i wanna make you know i don't like it
test._raw = {'endsAt': 'I changed'}
print(test.endsAt)