Cloudflare has launched Agent Tracing as the first component of Cloudflare Agents, aiming to centralize deployed agent sessions in a single dashboard. The feature adds agent-level spans to existing Workers tracing, covering agent calls, model calls, tool executions, and approvals, attaching model and token usage as metadata. Each turn generates a trace, with subagent work nested under the calling operation, forming a cross-layer waterfall view.
InfoQ's report points out that the feature solves the problem where agents may return HTTP 200 but still fail, such as selecting the wrong tool, passing stale context to subagents, or wasting tokens in retry loops. Traditional application telemetry only shows API requests or database queries, not the agent behavior causing the issue. Developer Mykyta Pavlenko responded on X, saying that seeing model calls directly above wrong tool parameters is exactly the debugging view he wanted.
However, there is a key limitation with approval spans: documentation states these spans represent lifecycle events within a Worker invocation and do not measure human wait time across calls. Therefore, the latency of human-in-the-loop—the most interesting metric in approval workflows—is not recorded.