Make grafana alert settings proper
This commit is contained in:
parent
404d84d56e
commit
3bc32e1cfd
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue