All Topics
All Topics
Technology
Technology
AI
AI
Business
Business
Entertainment
Entertainment
News
News
Programming
Programming
Security
Security
Science
Science
Design
Design
Environment
Environment
Finance
Finance
Crypto
Crypto
Politics
Politics
Sports
Sports
Education
Education
Gaming
Gaming
Art
Art
Music
Music
Health
Health
Books
Books
Food
Food
Travel
Travel
Personal
Personal
Bluesky
Twitter

Workers - Workers tracing now supports custom spans

19d ago

Source

CloudflareWorkers - Workers tracing now supports custom spanscloudflare.com
Snippet from the RSS feed
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 .

You might also wanna read

Comments

Sign in to join the conversation.

No comments yet. Be the first.