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: '' ```