feat(grafana): Provision ntfy as a contact point

This commit is contained in:
Tristan Daniël Maat 2025-11-30 15:53:28 +08:00
parent 823caecc59
commit 4894f056e5
Signed by: tlater
GPG key ID: 02E935006CF2E8E7

View file

@ -57,6 +57,19 @@ in
access = "proxy";
}
];
alerting.contactPoints.settings.contactPoints = [
{
name = "ntfy";
receivers = [
{
uid = "ntfy";
type = "webhook";
settings.url = "http://${config.services.ntfy-sh.settings.listen-http}/local-alerts?template=grafana";
}
];
}
];
};
};