From 037f0393bf8918e4b6765d015d0067993d96253e Mon Sep 17 00:00:00 2001 From: DoTheEvo Date: Sun, 5 Feb 2023 23:01:32 +0100 Subject: [PATCH] update --- prometheus_grafana/readme.md | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/prometheus_grafana/readme.md b/prometheus_grafana/readme.md index 90ff35e..ac4f09f 100644 --- a/prometheus_grafana/readme.md +++ b/prometheus_grafana/readme.md @@ -419,17 +419,27 @@ Including pushing information from windows powershell.
- `alertmanager.yml` + alertmanager.yml ```yml route: - receiver: 'ntfy' + receiver: 'email' receivers: - - name: "ntfy" - webhook_configs: - - url: 'https://ntfy.example.com/alertmanager' - send_resolved: true + + - name: "ntfy" + webhook_configs: + - url: 'https://ntfy.example.com/alertmanager' + send_resolved: true + + - name: 'email' + email_configs: + - to: 'whoever@example.com' + from: 'alertmanager@example.com' + smarthost: smtp-relay.sendinblue.com:587 + auth_username: '' + auth_identity: '' + auth_password: '' ```