shack/prometheus: activate alerting to telegram

This commit is contained in:
makefu 2020-09-13 23:52:22 +02:00
parent 306653db95
commit eaf4ed0b24
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
2 changed files with 20 additions and 8 deletions

View File

@ -0,0 +1,17 @@
{ pkgs, ...}:
{
systemd.services.alertmanager-bot-telegram = {
wantedBy = [ "multi-user.target" ];
after = [ "ip-up.target" ];
serviceConfig = {
EnvironmentFile = toString <secrets/shack/telegram_bot.env>;
DynamicUser = true;
StateDirectory = "alertbot";
ExecStart = ''${pkgs.alertmanager-bot-telegram}/bin/alertmanager-bot \
--alertmanager.url=http://alert.prometheus.shack --log.level=info \
--store=bolt --bolt.path=/var/lib/alertbot/bot.db \
--listen.addr="0.0.0.0:16320" \
--template.paths=${pkgs.alertmanager-bot-telegram}/templates/default.tmpl'';
};
};
}

View File

@ -118,7 +118,7 @@
];
alertmanager = {
enable = true;
listenAddress = "0.0.0.0";
listenAddress = "127.0.0.1";
configuration = {
"global" = {
"smtp_smarthost" = "smtp.example.com:587";
@ -134,15 +134,10 @@
"receivers" = [
{
"name" = "team-admins";
"email_configs" = [
{
"to" = "devnull@example.com";
"send_resolved" = true;
}
];
"email_configs" = [ ];
"webhook_configs" = [
{
"url" = "https://example.com/prometheus-alerts";
"url" = "http://localhost:8080";
"send_resolved" = true;
}
];