Source type
Grafana Source Configuration
Grafana sources receive Alerting webhook notifications and can verify Grafana's configured HMAC signature headers.
Grafana configuration
Create a Grafana source, keep POST and PUT and PATCH and DELETE enabled, and provide the configured Webhook Signing Secret, Optional signature_header and timestamp_header through API values for provider signature. FastHook uses these settings to validate each Grafana delivery before it enters the routing workflow.
Source TypeGRAFANA
Allowed methodsPOST, PUT, PATCH, DELETE
AuthenticationProvider signature
Credential fieldsWebhook Signing Secret, Optional signature_header and timestamp_header through API
{
"type": "GRAFANA",
"config": {
"auth_type": "PROVIDER_SIGNATURE",
"auth": {
"provider": "GRAFANA",
"webhook_signing_secret": "provider-secret"
},
"allowed_http_methods": ["POST","PUT","PATCH","DELETE"]
}
}Grafana request contract
FastHook verifies HMAC-SHA256 hex over raw body, or timestamp + ':' + raw body when a timestamp header is configured.
Grafana headers
Preserve x-grafana-alerting-signature, Configured timestamp header when sending Grafana test deliveries. FastHook evaluates this request context before accepting the payload, so missing or modified values remain visible as rejected requests instead of routed events.
x-grafana-alerting-signatureDefault HMAC-SHA256 hex signature header.
Configured timestamp headerOptional timestamp header included in the signed payload.
Grafana setup
- Create a Grafana webhook contact point using the FastHook Source URL.
- Use the same secret in Grafana and FastHook.
- If Grafana is configured with custom signature or timestamp headers, set those names through the FastHook API.