service/alertmanager: init

This commit is contained in:
Felix Buehler 2023-04-27 23:12:00 +02:00
parent a1731f0c2e
commit af8526bcb8
4 changed files with 119 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{
global = {
smtp_smarthost = "localhost:25";
smtp_from = "server@buehler.rocks";
};
# templates = [ ];
route = {
receiver = "default";
group_wait = "30s";
group_interval = "5m";
repeat_interval = "4h";
routes = [ ];
};
receivers = [
{
name = "default";
email_configs = [
{
to = "server@buehler.rocks";
}
];
}
];
}