Alerter

Crates.io Docker Image Size (latest by date) GitHub Workflow Status

Telegram and Matrix bot for alerts from Alertmanager

Usage

Telegram preparations

  1. Create bot with BotFather and get token.

  2. Get your, group or channel chat id with Get My ID bot.

Matrix preparations

  1. Create user under which alerter will work.

  2. Add this user to room for alerts and get room_id.

After preparations:

  1. Configure alerter.

  2. Optionally check that messages are being sent and formatted correctly using this script:

    sh ./test.sh tg

    Or

    sh ./test.sh matrix

  3. Add alerter to receivers in your alertmanager.yml:

    ```yaml receivers:

Templating

You can modify default templates for your needs, they are in Handlebars format. For Telegram alerter uses HTML style and for Matrix Markdown style.

Installation

Prebuilt packages

You can download prebuilt archive or Deb/RPM package from releases.

Docker

Pull image from DockerHub:

sh docker pull ultram4rine/alerter

In other cases, you need Rust installed.

Crates.io

You can install alerter from crates.io:

sh cargo install alerter

Then download needed template and run.

Build from source

  1. Clone repository:

    sh git clone https://github.com/ultram4rine/alerter.git cd alerter

  2. Build binary:

    sh cargo build --release

  3. Binary should be in target/release/alerter.

Build Deb or RPM package

See cargo-deb or cargo-generate-rpm instructions respectively.

Configuration

Use environment variables or command-line flags to configure alerter:

| Environment variable | Command-line flag | Default | Description | | ------------------------ | ---------------------- | ---------------------------- | ------------------------------------------------------------------------- | | ALERTERLISTENPORT | --port (-p) | 3030 | Port to listen. | | | --tg | | Enable Telegram support. | | ALERTERTGBOTTOKEN | --tg-token | | Telegram bot token. Required for Telegram support. | | ALERTERTGCHATID | --tg-chat-id | | Telegram chat ID. Required for Telegram support. | | ALERTERTGTMPLPATH | --tg-template-path | templates/default.tg.hbs | Path to handlebars template file. Required for Telegram support. | | | --matrix | | Enable Matrix support. | | ALERTERMATRIXUSERNAME | --matrix-user | | Matrix username. Required for Matrix support. | | ALERTERMATRIXPASSWORD | --matrix-pass | | Matrix password. Required for Matrix support. | | ALERTERMATRIXROOMID | --matrix-room-id | | Matrix room id. Required for Matrix support. | | ALERTERMATRIXTMPL_PATH | --matrix-template-path | templates/default.matrix.hbs | Path to handlebars template file for Matrix. Required for Matrix support. |