PagerDuty
This capability is only available to BYOC deployments. Check out our pricing page for more information about subscription plans and the available deployment modes.
Generate PagerDuty Routing (Integration) Key
In PagerDuty, Go to the your desired service, then click on integrations tab
Click on "Add an integration" or "+ Add another integration"
Select "Events API V2" Integration, and click on Add.

Events API V2 Copy the Integration Key.

Create an PagerDuty Connected App in groundcover
In groundcover, go to Settings → Connected-Apps.
Click on PagerDuty.

Select a name and paste your routing key.

Test the connection (Optional) - sends a test alert to verify the integration.
Save
PagerDuty Event Payload
groundcover sends events to PagerDuty using the Events API V2 format:
This payload structure is fixed and cannot be customized. Values shown with {{ }} are dynamically populated from your monitor configuration. If you need a custom payload structure, use a Generic Webhook instead.
Test mode: When using "Test the connection", the status field will be "test" and other fields like value, threshold, and URLs may contain placeholder values.
Payload Field Reference
summary
payload.summary
Issue title from the alert
severity
payload.severity
Mapped from groundcover severity (see table below)
source
payload.source
Always "groundcover"
timestamp
payload.timestamp
Alert firing time in UTC
monitor_name
custom_details
Name of the monitor
monitor_id
custom_details
Internal unique ID of the monitor
description
custom_details
Monitor description with variable expansion
value
custom_details
The value that triggered the alert
threshold
custom_details
Configured threshold for the monitor
status
custom_details
Alert state: "alerting", "resolved", or "test" (during connection testing)
renotification_count
custom_details
Counter for re-notifications (starts at 0)
labels
custom_details
Monitor labels as key-value pairs. Only labels defined in the monitor's group-by or custom labels are included; keys may be absent if not defined
dedup_key
root
Alert fingerprint for deduplication
links
root
URLs to issue and monitor in groundcover
Key Fields for Automation
renotification_count: Starts at 0 for the first notification and increments with each re-notification while the alert is firing. This field is included in every event payload and can be used in PagerDuty Event Orchestration for automation:
renotification_count == 0- First notificationrenotification_count > 0- Re-notification (alert still firing)
The counter resets to 0 when the alert resolves and fires again.
dedup_key: Uses the alert fingerprint to group related events. PagerDuty will deduplicate events with the same dedup_key.
Severity Mapping
groundcover severities are mapped to PagerDuty severities:
S1
critical
S2
error
S3
warning
S4
info
Troubleshooting
Why isn't there a separate description field in PagerDuty alerts?
PagerDuty Events API v2 uses summary as the main alert title. The description field is included in custom_details and contains the monitor description with any configured variable expansion.
Can I customize which labels appear in PagerDuty?
With the Connected App, monitor labels (group-by and custom) are included in custom_details.labels. Only labels that are defined on the monitor are included - keys will be absent if the label is not defined. If you need to select specific labels or map them to custom field names, use a Generic Webhook with a custom payload.
My alerts show "groundcover" as the source - can I change this?
The source field is fixed to "groundcover" in the Connected App. To customize the source or any other field, use a Generic Webhook instead.
Last updated
