Forked from mobeigi/alertmanager_webhook_payload_example.json
Created
March 21, 2026 14:50
-
-
Save ricardogpsf/8a80fe0eb93e1ead3a017eeeee857a7e to your computer and use it in GitHub Desktop.
Alertmanager Webhook Payload Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "receiver": "webhook", | |
| "status": "firing", | |
| "alerts": [ | |
| { | |
| "status": "firing", | |
| "labels": { | |
| "alertname": "Test", | |
| "dc": "eu-west-1", | |
| "instance": "localhost:9090", | |
| "job": "prometheus24" | |
| }, | |
| "annotations": { | |
| "description": "some description" | |
| }, | |
| "startsAt": "2018-08-03T09:52:26.739266876+02:00", | |
| "endsAt": "0001-01-01T00:00:00Z", | |
| "generatorURL": "http://example.com:9090/graph?g0.expr=go_memstats_alloc_bytes+%3E+0\u0026g0.tab=1" | |
| } | |
| ], | |
| "groupLabels": { | |
| "alertname": "Test", | |
| "job": "prometheus24" | |
| }, | |
| "commonLabels": { | |
| "alertname": "Test", | |
| "dc": "eu-west-1", | |
| "instance": "localhost:9090", | |
| "job": "prometheus24" | |
| }, | |
| "commonAnnotations": { | |
| "description": "some description" | |
| }, | |
| "externalURL": "http://example.com:9093", | |
| "version": "4", | |
| "groupKey": "{}:{alertname=\"Test\", job=\"prometheus24\"}" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment