---
title: Workers automatic tracing, now in open beta
description: Gain instant visibility into Workers execution with automatic tracing and OpenTelemetry exports
image: https://developers.cloudflare.com/changelog-preview.png
---

> Documentation Index  
> Fetch the complete documentation index at: https://developers.cloudflare.com/changelog/llms.txt  
> Use this file to discover all available pages before exploring further. 

[Skip to content](#%5Ftop) 

# Changelog

New updates and improvements at Cloudflare.

[ Subscribe to RSS ](https://developers.cloudflare.com/changelog/rss/index.xml) [ View RSS feeds ](https://developers.cloudflare.com/fundamentals/new-features/available-rss-feeds/) 

![hero image](https://developers.cloudflare.com/_astro/hero.CVYJHPAd_26AMqX.svg) 

[ ← Back to all posts ](https://developers.cloudflare.com/changelog/) 

## Workers automatic tracing, now in open beta

Nov 07, 2025 

[ Workers ](https://developers.cloudflare.com/workers/) 

Enable automatic tracing on your Workers, giving you detailed metadata and timing information for every operation your Worker performs.

![Tracing example](https://developers.cloudflare.com/_astro/R2_Screenshot.DAnOidMq_Z15kdUk.webp) 

Tracing helps you identify performance bottlenecks, resolve errors, and understand how your Worker interacts with other services on the Workers platform. You can now answer questions like:

* Which calls are slowing down my application?
* Which queries to my database take the longest?
* What happened within a request that resulted in an error?

**You can now:**

* View traces alongside your logs in the Workers Observability dashboard
* Export traces (and correlated logs) to any [OTLP-compatible destination ↗](https://opentelemetry.io/docs/specs/otel/protocol/), such as [Honeycomb](https://developers.cloudflare.com/workers/observability/exporting-opentelemetry-data/honeycomb/), [Sentry](https://developers.cloudflare.com/workers/observability/exporting-opentelemetry-data/sentry/) or [Grafana](https://developers.cloudflare.com/workers/observability/exporting-opentelemetry-data/grafana-cloud/), by configuring a tracing destination in the [Cloudflare dashboard ↗](https://dash.cloudflare.com/?to=/:account/workers-and-pages/observability/destinations)
* Analyze and query across span attributes (operation type, status, duration, errors)

#### To get started, set:

**JSONC**

```jsonc
{
  "observability": {
    "traces": {
      "enabled": true,
    },
  },
}
```

Note

In the future, Cloudflare plans to enable automatic tracing in addition to logs when you set `observability.enabled = true` in your Wrangler configuration.

While automatic tracing is in early beta, this setting will not enable tracing by default, and will only enable logs.

An updated [compatibility\_date](https://developers.cloudflare.com/workers/configuration/compatibility-dates/) will be required for this change to take effect.

#### Want to learn more?

* [Read the announcement ↗](https://blog.cloudflare.com/workers-tracing-now-in-open-beta/)
* [Check out the documentation](https://developers.cloudflare.com/workers/observability/traces/)

```json
{"@context":"https://schema.org","@type":"BlogPosting","@id":"https://developers.cloudflare.com/changelog/post/2025-11-07-automatic-tracing/#page","headline":"Workers automatic tracing, now in open beta · Changelog","description":"Gain instant visibility into Workers execution with automatic tracing and OpenTelemetry exports","url":"https://developers.cloudflare.com/changelog/post/2025-11-07-automatic-tracing/","inLanguage":"en","image":"https://developers.cloudflare.com/changelog-preview.png","dateModified":"2025-11-07","datePublished":"2025-11-07","publisher":{"@type":"Organization","name":"Cloudflare","url":"https://www.cloudflare.com/"},"isPartOf":{"@type":"WebSite","@id":"https://developers.cloudflare.com/#website","name":"Cloudflare Docs","url":"https://developers.cloudflare.com/"}}
```
