Webhook¶
Robusta can report issues and events in your Kubernetes cluster to a webhook.
Add this to your generated_values.yaml
sinksConfig:
- webhook_sink:
name: webhook_sink
url: "https://my-webhook-service.com/robusta-alerts"
Save the file and run
helm upgrade robusta robusta/robusta --values=generated_values.yaml
Example Output:
Configuration parameters¶
Field |
Default |
Description |
|---|---|---|
|
(required) |
The webhook endpoint to POST to. |
|
|
Payload format. |
|
|
Maximum payload size in bytes. Content beyond the limit is truncated. |
|
(none) |
Optional value sent in the |
|
|
When |
JSON payload¶
When format: json is set, the POST body is a JSON object with the following top-level fields:
{
"title": "CrashLoopBackOff",
"description": "Container is crashing repeatedly",
"cluster_name": "prod-eu-west",
"account_id": "abcd-1234",
"severity": "HIGH",
"source": "KUBERNETES_API_SERVER",
"finding_type": "ISSUE",
"aggregation_key": "CrashLoopBackOff",
"failure": true,
"fingerprint": "2c1d...",
"starts_at": "2026-04-30T10:15:00+00:00",
"ends_at": null,
"subject": {
"name": "my-pod",
"kind": "pod",
"namespace": "default",
"node": "node-1",
"container": "main",
"labels": {"app": "demo"},
"annotations": {"team": "platform"}
},
"links": [
{"name": "Runbook", "url": "https://...", "type": null},
{"name": "Graph", "url": "https://...", "type": "prometheus_generator_url"}
],
"investigate": "https://platform.robusta.dev/...",
"silence": "https://platform.robusta.dev/silences/create?...",
"enrichments": [ ... ]
}
investigate and silence are present only when the Robusta platform is enabled
(silence additionally requires add_silence_url on the finding).
If the serialized payload exceeds size_limit, the largest field (enrichments)
is dropped first so that core metadata and links survive truncation.