CircleCI

Receive job notifications and log deployments as changes to correlate with incidents.

InboundCI/CD & DevOps
Start Free Trial

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

1.In CircleCI, go to Project Settings → Webhooks
2.Click Add Webhook
3.Enter the webhook URL above
4.Choose events: Workflow Completed, Job Completed
5.Optionally set a signing secret
6.Click Save

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 StatusCircleCI Values
operational
fixedsuccess
down
failed

Track Deployments from CircleCI

Track changes for incident correlation and AI root cause analysis

  1. 1Add ALERT24_CHANGES_URL as an environment variable in CircleCI project settings
  2. 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