From 928dfc9368b3e762a544dc9e776c4124f22e2a4b Mon Sep 17 00:00:00 2001 From: Aaron Hill Date: Fri, 9 Jan 2026 13:26:17 -0500 Subject: [PATCH] Lower 'durable.worker.claim_tasks' span to 'debug' level We already have the metric, so let's avoid reporting lots of spans to OpenTelemetry --- src/worker.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/worker.rs b/src/worker.rs index 81e2dcf..fd360a6 100644 --- a/src/worker.rs +++ b/src/worker.rs @@ -220,6 +220,7 @@ impl Worker { #[cfg_attr( feature = "telemetry", tracing::instrument( + level = "debug", name = "durable.worker.claim_tasks", skip(pool), fields(queue = %queue_name, worker_id = %worker_id, count = count)