calert

command module
v0.1.0 Latest Latest
Warning

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

Go to latest
Published: Dec 27, 2018 License: MIT Imports: 15 Imported by: 0

README

calert

Overview GoDoc Go Report Card GoCover

calert is a lightweight binary to push Alertmanager notifications to Google Chat via webhook integration.

Download

go get github.com/mr-karan/calert

How to Use

calert uses Alertmanager webhook receiver to receive alerts payload, and pushes this data to Google Chat webhook endpoint.

mkdir calert-example && cd calert-example/
cp config.toml.sample config.toml # change the settings like hostname, address, google chat webhook url, timeouts etc in this file.
./calert.bin # this command starts a web server and is ready to receive events from alertmanager
  • Set the webhook URL from Google Chat in [app.notification_url] section of config.toml. You can refer to the official documentation for more details.

  • Configure Alertmanager config file (alertmanager.yml) and give the address of calert web-server. You can refer to the official documentation for more details.

You are now ready to send alerts to Google Chat!

Configuration

  • You can configure the default template for notification and create your own. Create a template file, similar to message.tmpl and set the path of this file in [app.template_file] section of config.toml

  • Alertmanager has the ability of group similar alerts together and fire only one event, clubbing all the alerts data into one event. calert leverages this and sends all alerts in one message by looping over the alerts and passing data in the template. You can configure the rules for grouping the alerts in alertmanager.yml config. You can read more about it here

Endpoints

  • POST /create (Used to receive new alerts and push to Google Chat)
# example request. (See examples/send_alert.sh)
➜ curl -XPOST -d"$alerts1" http://localhost:6000/create -i
{"status":"success","message":"Alert sent","data":null}
  • GET /ping (Health check endpoint)
➜ curl http://localhost:6000/ping
{"status":"success","data":{"buildVersion":"025a3a3 (2018-12-26 22:04:46 +0530)","buildDate":"2018-12-27 10:41:52","ping":"pong"}}

Examples

To help you quickly get started, you can POST a dummy payload which is similar to Alertmanager payload, present in examples/send_alert.sh.

License

MIT

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