Modify `alertmanager` config to send alerts to webhook.
This commit is contained in:
parent
d27b979ab0
commit
90c954a1a2
|
@ -15,3 +15,7 @@ receivers:
|
||||||
title: "{{ range .Alerts }}{{ .Annotations.summary }}\n{{ end }}"
|
title: "{{ range .Alerts }}{{ .Annotations.summary }}\n{{ end }}"
|
||||||
text: "{{ range .Alerts }}{{ .Annotations.description }}\n{{ end }}"
|
text: "{{ range .Alerts }}{{ .Annotations.description }}\n{{ end }}"
|
||||||
send_resolved: true
|
send_resolved: true
|
||||||
|
|
||||||
|
webhook_configs:
|
||||||
|
- send_resolved: true
|
||||||
|
url: 'http://localhost:6725'
|
||||||
|
|
Loading…
Reference in New Issue