9 lines
243 B
Python
9 lines
243 B
Python
|
|
||
|
def formatter(data, headers):
|
||
|
"""Pretty-print an alertmanager notification."""
|
||
|
text = ""
|
||
|
for alert in data['alerts']:
|
||
|
text += f"[{alert['status']}] - {alert['labels']['summary']}\n\n"
|
||
|
data["body"] = text
|
||
|
return data
|