Prometheus-Alertmanager integration with MS-teams

Mahesh Kumar
Opstree
Published in
6 min readDec 3, 2019

As we know monitoring our infrastructure is one of the critical components of infrastructure management, which ensures the proper functioning of our applications and infrastructure. But it is of no use if we are not getting notifications for alarms and threats in our system. As a better practice, if we enable all of the notifications in a common workspace, it would be very helpful for our team to track the status and performance of our infrastructure.

Last week, all of a sudden my company chose to migrate from slack to MS teams as a common chatroom. This meant, now, notifications would also be configured to MS teams. If you had searched a bit, you will find that there isn’t any direct configuration for Ms-teams in alert manager as slack does. As a DevOps engineer, I didn’t stop and looked beyond for more solutions and I found out that we need some proxy in between ALERTMANAGER and MS teams for forwarding alerts and I proceeded to configure those.

There are a couple of tools, which we can use as a proxy, but I preferred to use prometheus-msteams, for a couple of reasons.

  • Well-structured documentation.
  • Easy to configure.
  • We have more control in hand, can customize alert notifications, and can also configure to send notifications to multiple channels on MS teams. Besides well-described documentation.
    I still faced some challenges and took half of the day of mine.

How does it work?

Firstly, Prometheus sends an alert to ALERTMANAGER on basis of rules we configured in the Prometheus server. For instance, if memory usages of the server are more than 90%, it will generate an alert, and this alert will send to ALERTMANAGER by the Prometheus server. Afterward, ALERTMANGER will send this alert to prometheus-msteams which in turn send this alert in JSON format to MS-teams’s channel.

How to Run and Configure prometheus-msteams

We have multiple options to run prometheus-msteams

  1. Running on standalone Server (Using Binary)
  2. Running as a Docker Container

Running on Server

Firstly, you need to download the binary, click here to download the binary from the latest releases.

When you execute the binary with help on your system, you can see multiple options with description, which help us to run prometheus-msteams just like man-pages.

you can run promethues-msteams service as follow.

./prometheus-msteams server \ -l localhost \ -p 2000 \ -w "Webhook of MS-teams channel"

Above options explanation

  • -l: On which address prometheus-msteams going to listen, the default address is “0.0.0.0”. In the above example, prometheus-msteams listening on the localhost.
  • -p: On which port prometheus-msteams going to listen, the default port is 2000
  • -w: The incoming webhook of MS-teams channel we are going to insert here.

Now you know how to run prometheus-msteams on the server, let’s configure it with ALERTMANAGER.

Step 1 (Creating Incoming Webhook)

Create a channel in Ms-teams where you want to send alerts. Click on connectors(found connectors in options of the channel), and then search for ‘incoming webhook’ connector, from where you can create a webhook of this channel. Incoming webhook is used to send notification from external services to track the activities.

Step 2 (Run prometheus-msteams)

Till now, you have an incoming webhook of a channel where you want to send the notification. After that, you need to setup prometheus-msteams, and run it.

To have more options in the future you can use config.yml to provide webhook. So that you can give multiple webhooks to send alerts to multiple channels in MS-teams in future if you need it.

$ sudo nano /opt/promethues-msteams/config.yml

Add webhooks as shown below. if you want to add another webhook, you can add right after first webhook.

connectors: - alert_channel: "WEBHOOK URL"

The next step is to add a template for custom notification.

$ sudo nano /opt/prometheus-msteams/card.tmpl

Copy the following content in your file, or you can modify the following template as per your requirements. This template can be customized and uses the Go Templating Engine.

{{ define "teams.card" }}
{
"@type": "MessageCard",
"@context": "http://schema.org/extensions","themeColor": "{{- if eq .Status "resolved" -}}2DC72D{{- else if eq .Status "firing" -}}{{- if eq .CommonLabels.severity "critical" -}}8C1A1A{{- else if eq .CommonLabels.severity "warning" -}}FFA500{{- else -}}808080{{- end -}}{{- else -}}808080{{- end -}}","summary": "Prometheus Alerts","title": "Prometheus Alert ({{ .Status }})","sections": [ {{$externalUrl := .ExternalURL}}{{- range $index, $alert := .Alerts }}{{- if $index }},{{- end }}{"facts": [ {{- range $key, $value := $alert.Annotations }}{"name": "{{ reReplaceAll "_" "\\\\_" $key }}","value": "{{ reReplaceAll "_" "\\\\_" $value }}"},{{- end -}}{{$c := counter}}{{ range $key, $value := $alert.Labels }}{{if call $c}},{{ end }}{"name": "{{ reReplaceAll "_" "\\\\_" $key }}","value": "{{ reReplaceAll "_" "\\\\_" $value }}"}{{- end }}],"markdown": true}{{- end }}]}{{ end }}

Create prometheus-msteams user, and use --no-create-home and --shell /bin/false to restrict this user log into the server.

$ sudo useradd --no-create-home --shell /bin/false prometheus-msteams

Now, set the user and group ownership on the prometheus-msteams directorie, and prometheus-msteams binary to the prometheus-msteams user.

Create a service file to run prometheus-msteams as service with the following command.

$ sudo nano /etc/systemd/system/prometheus-msteams.service

The service file tells systemd to run prometheus-msteams as the prometheus-msteams user, with the configuration file located /opt/promethues-msteams/config.yml, and template file located in the same directory.

Copy the following content into prometheus-msteams.service file.

[Unit] 
Description=Prometheus-msteams
Wants=network-online.target
After=network-online.target
[Service]
User=prometheus-msteams
Group=prometheus-msteams
Type=simple
ExecStart=/usr/local/bin/prometheus-msteams -config-file /opt/prometheus-msteams/config.yml -template-file /opt/prometheus-msteams/card.tmpl
[Install]
WantedBy=multi-user.target

promethues-msteams listen on localhost on 2000 port, and you have to provide configuration file and template also.

To use the newly created service, reload systemd.

$ sudo systemctl daemon-reload

Now Start promethues-msteams.

$ sudo systemctl start prometheus-msteams.service

Check, whether the service is running or not.

$ sudo systemctl status prometheus-msteams

Lastly, enable the service to start on the boot.

$ sudo systemctl enable prometheus-msteams

Now, prometheus-msteams is up and running, we can configure ALERTMANAGER to send alerts to prometheus-msteams.

Step 3(Configure ALERTMANAGER)

Open alertmanager.yml file in your favorite editor.

$ sudo vim /etc/alertmanager/alertmanager.yml

you can configure ALERTMANAGER as shown below.

global: resolve_timeout: 5m templates: - '/etc/alertmanager/*.tmpl' receivers: - name: alert_channel webhook_configs: - url: 'http://localhost:2000/alert_channel' send_resolved: true route: group_by: ['critical','severity'] group_interval: 5m group_wait: 30s receiver: alert_channel repeat_interval: 3h

In the above configuration, ALERTMANAGER is sending alerts to prometheus-msteams, which is listening on localhost, and we pass send_resolved, which will send resolved alerts.

The critical alert to MS-teams will look like below.

When alert resolved, it will look like below.

Note: The logs of prometheus-msteams created in /var/log/syslog file. In this file you will find every notification send by prometheus-msteams. Apart from this, if something went wrong, and you are not getting notification, you can debug in syslog file

As Docker Container

you can also run prometheus-msteams as containers in your system. All configuration files of prometheus-msteams going to be the same, you just need to run the following command.

docker run -d -p 2000:2000 \ --name="promteams" \ -v /opt/prometheus-msteams/config.yml:/tmp/config.yml \ -e CONFIG_FILE="/tmp/config.yml" \ -v /opt/prometheus-msteams/card.tmpl:/tmp/card.tmpl \ -e TEMPLATE_FILE="/tmp/card.tmpl" \ docker.io/bzon/prometheus-msteams:v1.1.4

Now that you are all set to get alerts in MS-teams channel, you can see that it isn’t as difficult as you originally thought. Of course, this is not the only way to get alerts on MS-teams. You can always use a different tools like prome2teams, etc. With this, I think we are ready to move ahead and explore other monitoring tools as well.

I hope this blog post explains everything clearly. I would really appreciate getting feedback in the comments.

Originally published at http://blog.opstree.com on December 3, 2019.

--

--