matrix-hook

command module
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 11, 2023 License: GPL-3.0 Imports: 10 Imported by: 0

README

matrix-hook

Matrix webhook receiver based on matrix-alertmanager-receiver. Listens for webhooks from promehteus alertmanager and sends a message to a matrix channel.

Configuration is done with environment variables.

Variable Description Example
HTTP_ADDRESS Adress to listen on localhost
HTTP_PORT Port to listen on 8080
MX_HOMESERVER Matrix homeserver matrix.org
MX_ID Matrix user ID @mr_panic:matrix.org
MX_ROOMID Matrix room to join !ilXTTTTTTuDmsz:matrix.org
MX_TOKEN Matrix access token rstienrsrseintrisetnrte
MX_MSG_TEMPLATE Path to message templaate ./message.html.tmpl

Nix

For Nix/Nixos users a flake.nix is provided to simplify the build. It also privides app to test the hooks with mocked data from mock.json

Build
nix build
Run directly
nix run
Test alerts
nix run '.#mock-hook'
Module

The flake also includes a NixOS module for ease of use. A minimal configuration will look like this:


# Add to flake inputs
inputs.matrix-hook.url = "github:pinpox/matrix-hook";

# Import the module in your configuration.nix
imports = [
  self.inputs.matrix-hook.nixosModules.matrix-hook
];

# Enable and set options
services.matrix-hook = {
  enable = true;
  httpAddress = "localhost";
  matrixHomeserver = "https://matrix.org";
  matrixUser = "@mr_panic:matrix.org";
  matrixRoom = "!ilXXXXXXXXXXXXXXXz:matrix.org";
  envFile = "/var/src/secrets/matrix-hook/envfile";
  msgTemplatePath = "${self.inputs.matrix-hook.packages."x86_64-linux".matrix-hook}/bin/message.html.tmpl";
};

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL