AlertManager to Gotify bridge
Find a file
2020-10-20 15:39:55 +01:00
.dockerignore Initial commit 2020-10-13 09:19:35 +01:00
.gitignore Initial commit 2020-10-13 09:19:35 +01:00
alertify.py Fix comments 2020-10-20 15:39:55 +01:00
Dockerfile Run as non-root user 2020-10-13 15:44:31 +01:00
example.yaml Add defaults and config parser. 2020-10-20 15:35:24 +01:00
README.md Add defaults and config parser. 2020-10-20 15:35:24 +01:00
requirements.txt Add defaults and config parser. 2020-10-20 15:35:24 +01:00
test.sh Add some output 2020-10-15 09:08:23 +01:00

This application bridges Prometheus Alertmanager alerts to Gotify.

Usage

usage: alertify.py [-h] [-c CONFIG] [-H]

Bridge between Prometheus Alertmanager and Gotify

optional arguments:
  -h, --help            show this help message and exit
  -c CONFIG, --config CONFIG
                        path to config YAML. (default: alertify.yaml)
  -H, --healthcheck     simply exit with 0 for healthy or 1 when unhealthy

The following environment variables will override any config or default:
  * LISTEN_PORT   (default: 8080)
  * GOTIFY_SERVER (default: localhost)
  * GOTIFY_PORT   (default: 80)
  * GOTIFY_KEY    (default: None)
  * VERBOSE       (default: False)

Notes

  • Listens on port 8080 by default.
  • Forwards resolved alerts, if sent.
  • Defaults, if not sent:
    Field Default value
    Priority 5
    Description ...
    Severity Default

Docker

Build

docker build . -t 'alertify:latest'

Run

e.g.

docker run --name alertify -p 8080:8080 -e TZ=Europe/London -e GOTIFY_KEY=XXXXXXXX -e GOTIFY_SERVER=gotify -e GOTIFY_PORT=80 alertify:latest

Compose:

---
version: "2"
services:
  gotify:
    image: gotify/server:latest
    container_name: gotify
    environment:
      - TZ=Europe/London
    volumes:
      - config/config.yml:/etc/gotify/config.yml
      - data:/app/data
    restart: unless-stopped

  alertify:
    image: alertify:latest
    container_name: alertify
    ports:
      - "8080:8080"
    environment:
      - TZ=Europe/London
      - GOTIFY_KEY=XXXXXXXXXXXX
      - GOTIFY_SERVER=gotify
      - GOTIFY_PORT=80
    restart: unless-stopped