Send Signal alert on alertmanager hook

This commit is contained in:
Théophile Bastian 2022-03-23 17:45:08 +01:00
parent bc4639a055
commit 8f1495cf0c
4 changed files with 31 additions and 1 deletions

View File

@ -8,6 +8,10 @@ Provide ways to send notifications to signal-cli through webhooks
virtualenv -p python3 --system-site-packages venv
source venv/bin/activate
pip install -r requirements.txt
# Configure
cp signal_webhook/configuration.sample.py signal_webhook/configuration.py
$EDITOR signal_webhook/configuration.py
```
**Beware!** Sending messages to Signal requires `gi`, which cannot be installed

1
signal_webhook/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
configuration.py

View File

@ -1,6 +1,8 @@
import typing as t
from collections import defaultdict
from flask import Flask, request
from . import signal
from . import configuration
app = Flask(__name__)
@ -13,6 +15,7 @@ def root() -> t.Tuple[str, int]:
@app.route("/alertmanager", methods=["POST"])
def alertmanager():
data = request.get_json(cache=False)
if "version" not in data or int(data["version"]) != 4:
return "Bad API version", 400
if "alerts" not in data:
@ -23,5 +26,22 @@ def alertmanager():
# Ignore
return "OK", 200
severities = defaultdict(int)
alert_lines = []
for alert in data["alerts"]:
...
try:
severities[alert["labels"]["severity"]] += 1
alert_lines.append(
f"<{alert['labels']['alertname']}> {alert['annotations']['description']}"
)
except KeyError as exn:
alert_lines.append(f"(malformed alert — {exn})")
msg = f"[PROMETHEUS] {len(data['alerts'])} firing: "
msg += ", ".join([f"{count} {typ}" for typ, count in severities.items()])
msg += "\n\n"
msg += "\n".join(["* " + line for line in alert_lines])
signal.signal_send(configuration.RECIPIENTS[configuration.DEFAULT_RECIPIENT], msg)
return "OK", 200

View File

@ -0,0 +1,5 @@
# Signal 'address book'
RECIPIENTS = {"foo": "+42..."} # FIXME
# Recipient from the dict above to send to by default
DEFAULT_RECIPIENT = "foo" # FIXME