A bot that receives a webhook and forwards alerts to a matrix room
Go to file
spatterlight 400156386c
Update CHANGELOG.md
2023-04-27 17:06:21 +00:00
alert_examples Add http format of example requests 2022-09-10 01:48:37 +02:00
assets Extend readme, add matrix support room 2022-08-24 20:40:51 +02:00
tests Add test for classification 2022-09-10 01:03:29 +02:00
.gitignore Add idea files to gitignore 2022-09-10 01:01:32 +02:00
CHANGELOG.md Update CHANGELOG.md 2023-04-27 17:06:21 +00:00
LICENSE.txt Add license 2022-08-24 22:52:29 +02:00
README.md Update README.md 2023-04-27 16:43:37 +00:00
alertbot.py Merge branch 'main' of https://github.com/moan0s/alertbot 2023-04-24 21:29:19 +02:00
maubot.yaml fix #1 and support prometheus resolved messages 2022-12-18 16:31:19 -05:00
requirements.txt Add requirements 2022-09-10 01:00:53 +02:00

README.md

Alertbot banner

Alertbot

This bot uses the webhook functionality of monitoring/alerting solutions like Grafana or Alertmanager to forward alerts to matrix rooms. This means that you no longer have to use E-Mail or Slack to receive alerts.

You can either invite an official instance of the bot, or self-host it on your own matrix server.

Invite the Official Instance

  • Create a Matrix room and invite @alertbot:hyteck.de
  • Send !url to the room. The bot will answer with the webhook URL
  • Put the Webhook URL into your monitoring solution (see below)

Self-host an Instance

Prerequisites:

  • A Matrix server where you have access to a maubot instance
  • An instance of alertmanager or grafana or a similar alerting program that is able to send webhooks

Build the Bot

Clone this repository and build it into a maubot plugin file (.mbp). Navigate to the Maubot Administration Interface and upload the .mpb file.

git clone https://github.com/moan0s/alertbot
cd alertbot
pip install maubot
mbc build

Configure the Bot

Next, once the plugin is installed, set up an client and then create an instance which connects the client and plugin.

Finally, invite the bot to an encrypted room where alerts should be sent and query the bot for the room id with the command !roomid.

Setup Alertmanager

This configuration will send all your alerts to the room !zOcbWjsWzdREnihgeC:example.com (if the bot has access to it). Put in your own room-id (!roomid) behind the webhook base url (!url):


receivers:
- name: alertbot
  webhook_configs:
  - url: https://synapse.hyteck.de/_matrix/maubot/plugin/alertbot/webhook/!zOcbWjsWzdREnihgeC:example.com
route:
  group_by:
  - alertname
  - cluster
  - service
  group_interval: 5m
  group_wait: 30s
  receiver: alertbot
  repeat_interval: 3h

Setup Grafana

The grafana setup is fairly simple and can be used to forward grafana alerts to matrix.

Screenshot of the Grafana Setup

Run Locally

You might want to test the bot on your local machine but send webhooks to a public server. To do that use a domain e.g. webbhook.example.com and configure nginx as reverse proxy for port 4242 for this domain.

Connect

Run the local server and connect via (29316 is the local maubot port) ssh -N -R 4242:localhost:29316 webhook.example.com

Send Test Alerts

Use an example from the alert_examples/ to test your setup

curl --header "Content-Type: application/json" \
  --request POST \
  --data "@alert_examples/prometheus.json" \
  https://webhook.example.com/_matrix/maubot/plugin/maubot/webhook/!zOcbWjsWzdREnihreC:example.com

Matrix Room

This project has a dedicated chat room