1
Fork 0

Make grafana alert settings proper

This commit is contained in:
prescientmoon 2024-02-24 08:14:41 +01:00
parent 404d84d56e
commit 3bc32e1cfd
Signed by: prescientmoon
SSH key fingerprint: SHA256:UUF9JT2s8Xfyv76b8ZuVL7XrmimH4o49p4b+iexbVH4

View file

@ -36,16 +36,29 @@ in
provision = {
enable = true;
alerting.contactPoints.settings.contactPoints = [
{ name = "email"; }
{
name = "discord";
webhook_configs = [{
send_resolved = true;
url = secret "grafana_discord_webhook";
}];
}
];
# https://grafana.com/docs/grafana/latest/alerting/set-up/provision-alerting-resources/file-provisioning/
alerting.contactPoints.settings = {
deleteContactPoints = [
{ uid = "main_discord"; }
{ uid = "main_email"; }
];
contactPoints = [{
name = "main";
receivers = [
{
uid = "main_discord";
type = "discord";
settings.url = secret "grafana_discord_webhook";
}
{
uid = "main_email";
type = "email";
settings.addresses = "colimit@moonythm.dev";
}
];
}];
};
datasources.settings.datasources = [{
name = "Prometheus";