CircleCI
Receive job notifications and log deployments as changes to correlate with incidents.
Quick Setup
Copy Webhook URL
Go to your Alert24 dashboard and copy the webhook URL for CircleCI.
Configure CircleCI
Add the webhook URL in your CircleCI settings.
Auto-Detected
Alert24 auto-detects CircleCI payloads and maps them to incidents.
Step-by-Step Setup Instructions
CircleCI Webhook Setup
Example Webhook Payload
This is a sample payload that CircleCI sends to Alert24 when an alert fires.
{
"id": "abc-123-def",
"type": "workflow-completed",
"status": "failed",
"subject": "Deploy to Production workflow failed",
"happened_at": "2024-01-15T10:30:00Z",
"workflow": {
"id": "wf-123",
"name": "deploy-production",
"status": "failed",
"url": "https://app.circleci.com/pipelines/github/org/repo/123/workflows/wf-123"
},
"project": {
"slug": "gh/org/repo"
}
}How Alert24 Maps CircleCI Data
Status Field
status
Message Field
subject
Auto-Create Incidents
Yes
Auto-Resolve Incidents
Yes
Status Mapping
| Alert24 Status | CircleCI Values |
|---|---|
| operational | fixedsuccess |
| down | failed |
Track Deployments from CircleCI
Track changes for incident correlation and AI root cause analysis
- 1Add ALERT24_CHANGES_URL as an environment variable in CircleCI project settings
- 2Add a deployment notification step to your config.yml
# .circleci/config.yml
- run:
name: Log deployment to Alert24
command: |
curl -s -X POST "$ALERT24_CHANGES_URL" \\
-H "Content-Type: application/json" \\
-d '{
"summary": "CircleCI deploy '$CIRCLE_SHA1'",
"change_type": "deployment",
"commit_sha": "'$CIRCLE_SHA1'",
"branch": "'$CIRCLE_BRANCH'",
"pipeline_url": "'$CIRCLE_BUILD_URL'"
}'Changes are logged per service. Copy the Changes Webhook URL from your service page in Alert24. When an incident occurs, recent changes are surfaced automatically with AI-powered root cause analysis. Learn more →
Connect CircleCI to Alert24 in minutes
Free plan includes 5 monitors, 1 status page, and incident management. No credit card required.
More CI/CD & DevOps Integrations
GitHub
InboundLog pull request merges, pushes, and releases as changes for incident correlation.
GitHub Actions
InboundReceive workflow run notifications and log deployments as changes to correlate with incidents.
GitLab CI
InboundReceive pipeline notifications and log deployments as changes to correlate with incidents.
Terraform Cloud
InboundReceive run notifications and log infrastructure changes to correlate with incidents.
Jenkins
InboundReceive build notifications and log deployments as changes to correlate with incidents.
Azure DevOps
InboundReceive pipeline and release notifications and log deployments as changes for incident correlation.