web-app/src/assets/doc/alert-integration/alertmanager.en-US.md
This document describes how to send alerts from Prometheus AlertManager to the HertzBeat alert platform.
receivers:
- name: 'webhook'
webhook_configs:
- url: 'http://{hertzbeat_host}:1157/api/alerts/report/alertmanager'
send_resolved: true
http_config:
authorization:
type: 'Bearer'
credentials: '{token}'
http://{hertzbeat_host}:1157/api/alerts/report/alertmanager is the webhook interface address provided by HertzBeat.send_resolved: true indicates that alert recovery information will be sent.{token} in credentials is the token provided by HertzBeat.graph LR
A[Prometheus Alertmanager] --> B[Webhook]
B --> C[HertzBeat Alert Platform]
C --> D[Grouping Convergence]
D --> E[Alert Suppression]
E --> F[Alert Silence]
F --> G[Alert Center]
F --> H[Message Distribution]