mirror of
https://github.com/moan0s/alertbot.git
synced 2024-10-01 06:25:35 -04:00
Merge pull request #5 from pauvos/prom-alert-labels
Handle missing labels of prometheus alerts more gracefully
This commit is contained in:
commit
ab9625ea61
15
alertbot.py
15
alertbot.py
@ -162,14 +162,15 @@ def prometheus_alert_to_markdown(alert_data: dict) -> str:
|
||||
:return: Alert as fomatted markdown
|
||||
"""
|
||||
messages = []
|
||||
known_labels = ['alertname', 'instance', 'job']
|
||||
for alert in alert_data["alerts"]:
|
||||
message = (
|
||||
f"""**{alert['status']}** {'💚' if alert['status'] == 'resolved' else '🔥'}: {alert['annotations']['description']}
|
||||
* **Alertname:** {alert["labels"]['alertname']}
|
||||
* **Instance:** {alert["labels"]['instance']}
|
||||
* **Job:** {alert["labels"]['job']}
|
||||
"""
|
||||
)
|
||||
title = alert['annotations']['description'] if hasattr(alert['annotations'], 'description') else alert['annotations']['summary']
|
||||
message = f"""**{alert['status']}** {'💚' if alert['status'] == 'resolved' else '🔥'}: {title}"""
|
||||
for label_name in known_labels:
|
||||
try:
|
||||
message += "\n* **{0}**: {1}".format(label_name.capitalize(), alert["labels"][label_name])
|
||||
except:
|
||||
pass
|
||||
messages.append(message)
|
||||
return messages
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user