-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
131 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
86 changes: 86 additions & 0 deletions
86
src/python/WMCore/Services/AlertManager/AlertManagerAPI.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
""" | ||
AlertManagerAPI - send alerts to MONIT AlertManager via API calls | ||
""" | ||
|
||
from __future__ import division | ||
from datetime import timedelta, datetime | ||
import socket | ||
import json | ||
|
||
from WMCore.Services.pycurl_manager import RequestHandler | ||
from Utils.Timers import LocalTimezone | ||
|
||
|
||
class AlertManagerAPI(object): | ||
""" | ||
A class used to send alerts via the MONIT AlertManager API | ||
""" | ||
|
||
def __init__(self, alertManagerUrl): | ||
self.alertManagerUrl = alertManagerUrl | ||
# sender's hostname is added as an annotation | ||
self.hostname = socket.gethostname() | ||
self.mgr = RequestHandler() | ||
self.ltz = LocalTimezone() | ||
|
||
def send(self, alertName, severity, labels, end, generatorURL, annotations): | ||
""" | ||
configDict: the WMCore service configuration | ||
alertName: a unique name for the alert | ||
severity: low, medium, high | ||
labels: a customizable dict of key:value pairs used for routing the alert, ex. "tag": "microservices" | ||
must be configured in AlertManager by MONIT team | ||
end: how many minutes until the alarm is silenced | ||
generatorURL: this URL will be sent to AlertManager and configured as a clickable "Source" link in the web interface | ||
annotations: a customizable dict of key:value pairs to be appended to the alert, typically: | ||
"hostname": "the hostname where the alert generated" (appended automatically) | ||
"summary": "a short description of the alert" | ||
"description": "a longer informational message with details about the alert" | ||
AlertManager JSON format reference: https://www.prometheus.io/docs/alerting/latest/clients/ | ||
[ | ||
{ | ||
"labels": { | ||
"alertname": "<requiredAlertName>", | ||
"<labelname>": "<labelvalue>", | ||
... | ||
}, | ||
"annotations": { | ||
"<labelname>": "<labelvalue>", | ||
... | ||
}, | ||
"startsAt": "<rfc3339>", # optional, will be current time if not present | ||
"endsAt": "<rfc3339>", | ||
"generatorURL": "<generator_url>" # optional | ||
}, | ||
] | ||
""" | ||
|
||
headers = {"Content-Type": "application/json"} | ||
request = [] | ||
alert = {} | ||
|
||
# add labels | ||
labels["alertname"] = alertName | ||
labels["severity"] = severity | ||
alert["labels"] = labels | ||
|
||
# add annotations | ||
annotations["hostname"] = self.hostname | ||
alert["annotations"] = annotations | ||
|
||
# In python3 we won't need the LocalTimezone class | ||
# Will change to d = datetime.now().astimezone() + timedelta(minutes = self.end) | ||
d = datetime.now(self.ltz) + timedelta(minutes = end) | ||
alert["endsAt"] = d.isoformat("T") | ||
alert["generatorURL"] = generatorURL | ||
|
||
request.append(alert) | ||
# need to do this because pycurl_manager only accepts dict and encoded strings type | ||
params = json.dumps(request) | ||
|
||
res = self.mgr.getdata(self.alertManagerUrl, params=params, headers=headers, verb='POST') | ||
|
||
return res | ||
|