Skip to content

Add Runframe integration to documentation#2990

Open
niks918 wants to merge 1 commit into
prometheus:mainfrom
niks918:patch-1
Open

Add Runframe integration to documentation#2990
niks918 wants to merge 1 commit into
prometheus:mainfrom
niks918:patch-1

Conversation

@niks918
Copy link
Copy Markdown

@niks918 niks918 commented May 16, 2026

Adds Runframe to the Alertmanager Webhook Receiver integrations list. Runframe supports Prometheus Alertmanager through the standard webhook_configs receiver. Alertmanager can send alert webhook payloads to Runframe to create incidents, route to on-call responders, and publish status updates.

Example Alertmanager receiver configuration:

receivers:
  - name: runframe
    webhook_configs:
      - url: https://runframe.io/api/webhooks/<routing-key>
        send_resolved: true

Example Alertmanager webhook payload sent to Runframe:

{
  "receiver": "runframe",
  "status": "firing",
  "alerts": [
    {
      "status": "firing",
      "labels": {
        "alertname": "HighErrorRate",
        "severity": "critical",
        "service": "api"
      },
      "annotations": {
        "summary": "High error rate on API service",
        "description": "The API service is returning 5xx responses above the configured threshold."
      },
      "generatorURL": "https://prometheus.example.com/graph?g0.expr=...",
      "fingerprint": "abc123"
    }
  ],
  "externalURL": "https://alertmanager.example.com"
}

Docs-only change.

Signed-off-by: Nik <niketas918@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant