Prometheus
Automatizza la tua status page con Prometheus
- Crea un webhook Prometheus
- Per prima cosa configuriamo Alertmanager con un receiver webhook nel
alertmanager.ymlfile. - Sostituisci
<INSERT-YOUR-WEBHOOK>con il webhook generato prima nel file alertmanager.yml e avvia Alertmanager con questo comando. - Avvia Alertmanager con questo comando
alertmanager --config.file=alertmanager.yml
global:resolve_timeout: 5mroute:receiver: webhook_receiverreceivers:- name: webhook_receiverwebhook_configs:- url: '<INSERT-YOUR-WEBHOOK>'send_resolved: true

