Connecting Grafana / Alertmanager
- Open Alertmanager configuration and add a webhook receiver pointing to your FixFast webhook URL.
- Include labels for
service,environment, and any fingerprint-friendly identifiers. - Send a test alert to verify delivery.
- Confirm receipt in FixFast and ensure labels populate the alert feed.
Expected payload shape
{
"receiver": "fixfast",
"status": "firing",
"alerts": [
{
"status": "firing",
"labels": {
"alertname": "cpu_usage_high",
"service": "payments-api",
"environment": "prod"
},
"annotations": {
"summary": "CPU usage above threshold",
"fingerprint": "cpu_usage_high"
}
}
]
}
Retry behavior
Alertmanager will retry on non-2xx responses. Ensure the endpoint is reachable and TLS is valid.