Prometheus
Automate your status page using Prometheus
- Create a Prometheus webhook
- First let us setup Alertmanager with webhook receiver in the
alertmanager.yml
file. - Replace
<INSERT-YOUR-WEBHOOK>
with the webhook that we generated earlier in the alertmanager.yml file and run the Alertmanager using the following command. - Run the Alert manager using the following command
alertmanager --config.file=alertmanager.yml
global:resolve_timeout: 5mroute:receiver: webhook_receiverreceivers:- name: webhook_receiverwebhook_configs:- url: '<INSERT-YOUR-WEBHOOK>'send_resolved: true