OpenTelemetry Support for CI/CD
CircleCI now exports pipeline telemetry data to your observability platform via OpenTelemetry. Once configured, CircleCI will emit trace spans for every completed pipeline, workflow, job, and status — giving you full visibility into your CI/CD performance alongside your application traces.
OpenTelemetry Support for CI/CD
CircleCI now exports pipeline telemetry data to your observability platform via OpenTelemetry. Once configured, CircleCI will emit trace spans for every completed pipeline, workflow, job, and status — giving you full visibility into your CI/CD performance alongside your application traces.
Spans include rich context such as job status, workflow names, VCS metadata (branch, commit SHA, pull request), and direct links back to the CircleCI UI. Span attributes follow OpenTelemetry semantic conventions where possible, with CircleCI-specific attributes (com.circleci.*) for additional detail.
To get started, configure an exporter via the Organization Settings API (see below). CircleCI supports any OTLP-compatible backend — including Honeycomb, Datadog, and Grafana.
View the full OpenTelemetry reference →
Manage Organization Settings via API
You can now manage your organization’s OpenTelemetry exporter configuration programmatically. Three new endpoints are available under /api/v2/otel/exporters:
GET /api/v2/otel/exporters?org_id=… — List configured exporters for an org
POST /api/v2/otel/exporters — Add a new exporter configuration
DELETE /api/v2/otel/exporters/:id — Remove an exporter configuration
All endpoints require the manage-org permission. This enables teams to automate observability setup as part of onboarding workflows or infrastructure-as-code pipelines.
View the full API reference →
NOTE: Managing exporter configuration via the Organization Settings UI is coming soon.