Integrations
Regle connects to the tools you already use so it can correlate changes with incidents automatically. Setup takes about 5 minutes — no agents to install.
Alert sources
Send incidents and alerts into Regle so it knows when something broke.
- PagerDuty — ingest
incident.triggeredalerts out of the box. - Opsgenie / Slack alerts — forward alerts via a custom webhook (see below).
Change sources
Tell Regle what shipped, so it can rank likely causes when an alert fires.
- GitHub — track merges and deploys.
- Vercel — deploy webhooks.
- AWS CloudTrail — infrastructure and config changes.
- Custom — push deploys, flag flips, and config changes from any tool via the Change API.
Change sources are configured in-app under Settings → Integration.
Custom webhooks
Send any change or event directly to Regle:
curl -s -XPOST \
-H 'Content-Type: application/json' \
-H "X-Regle-ApiKey: $REGLE_API_KEY" \
-d '{
"service": "api-checkout",
"version": "7f3c1a2",
"user": "rachel",
"environment": "production",
"description": "Deployed payment retry logic",
"labels": "git-tag=v1.2.3"
}' \
https://api.regle.dev/v2/change
See the Change API reference for the full schema.
Need another integration?
Tell us what you need at [email protected].