You can now create custom trace spans in your Workers code using tracing.enterSpan(). Custom spans appear alongside the automatic platform instrumentation (fetch calls, KV reads, D1 queries, and other platform operations) in your traces and OpenTelemetry exports, with correct parent-child nesting.
The API is available via import { tracing } from "cloudflare:workers" or through the handler context as ctx.tracing:
import { tracing } from "cloudflare:workers";
export default { async fetch(request, env, ctx) { return tracing.enterSpan("handleRequest", async (span) => { span.setAttribute("url.path", new URL(request.url).pathname); const data = await env.MY_KV.get("key"); return new Response(data); }); },};Spans nest automatically based on the JavaScript async context, and are auto-ended when the callback returns or its returned promise settles. The Span object provides setAttribute(key, value) for attaching metadata and an isTraced property to check whether the current request is being sampled.
Tracing must be enabled in your Wrangler configuration for spans to be recorded.
For full API details and examples, refer to Custom spans.
Source: Cloudflare
Latest Posts
- MC1318124: Microsoft Teams Adds Cloud File Search in Attach File Picker

- MC1279071: Microsoft Teams Mobile Adds Queues App for Managing Call Queues and Activity

- MC1318249: Microsoft Teams Gets New File Download Manager for Faster, Less Disruptive Downloads

- (Updated) Microsoft Teams: New search experience for cloud files in the file attach picker [MC1318124]




