惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
Docker
人人都是产品经理
人人都是产品经理
小众软件
小众软件
博客园 - Franky
WordPress大学
WordPress大学
Jina AI
Jina AI
Google DeepMind News
Google DeepMind News
I
InfoQ
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
F
Fortinet All Blogs
博客园 - 【当耐特】
IT之家
IT之家
G
Google Developers Blog
J
Java Code Geeks
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
云风的 BLOG
云风的 BLOG
Recent Announcements
Recent Announcements
有赞技术团队
有赞技术团队
V
Visual Studio Blog
U
Unit 42
阮一峰的网络日志
阮一峰的网络日志
月光博客
月光博客
GbyAI
GbyAI
雷峰网
雷峰网

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
You Are Debugging a Distributed System With Single-Proces...
Kavin Kim · 2026-06-16 · via DEV Community

Kavin Kim

Traditional distributed tracing was built on assumptions about how software fails. A POST to /api/orders hits the same three services in the same order. You pre-define the schema, set up alerts on deviations, and the trace tells you what happened.

LLM agents violate all of these assumptions. The execution path changes every run. The "services" (agents) route dynamically based on reasoning. The output is non-deterministic. And the gap between "my infrastructure is healthy" and "my agent did the right thing" is where most debugging pain lives.

MLflow documented the pattern: teams that debug in minutes versus teams that debug for days. The difference is not skill. It is whether they treat their agents as programs or as distributed systems.

The Distributed Tracing Gap

OpenTelemetry spans work for traditional services. Request enters, traverses a predictable path, returns. The span tree is bounded and readable. One trace tells you what happened.

Multi-agent systems break this model:

# Traditional service tracing (works):
# Request → Service A → Service B → Service C → Response
# Span tree: 4 nodes, predictable, bounded

# Multi-agent tracing (broken with traditional tools):
# User request → Planner Agent → (decides routing dynamically)
#   → Researcher Agent (maybe, depends on planner reasoning)
#     → Tool Call 1 (web search)
#     → Tool Call 2 (database query)
#   → Writer Agent (only if researcher found enough data)
#     → Tool Call 3 (format output)
#   → Reviewer Agent (only if confidence < threshold)
#     → Loops back to Writer (0-3 times, unknown at trace start)
# → Response

# Problems:
# 1. Span tree is unbounded (loops, conditional routing)
# 2. "Why did Planner route to Researcher?" is not in the span
# 3. Message between agents: was it received? Was it understood?
# 4. Agent B processed stale context from Agent A (no span for that)
# 5. Total execution time: infrastructure says 2.1s. Actual: 47s (retries)

Red Hat confirmed: "This complexity makes debugging in production difficult without clear visibility. A multi-agent AI system involves complex interactions and requires end-to-end visibility through distributed tracing."

But the tracing they describe captures infrastructure events. Not communication events between agents.

The Missing Layer: Message-Level Tracing

When Agent A sends a task to Agent B, five things can go wrong that no infrastructure trace captures:

  1. Message was never sent (Agent A's reasoning decided not to)
  2. Message was sent but Agent B's context was full (silently dropped)
  3. Message was received but Agent B misinterpreted the intent
  4. Message was processed but Agent B's output was based on stale state
  5. Message response was correct but Agent A ignored it (already moved on)
# Infrastructure trace sees:
trace = {
    "agent_a": {"status": "200 OK", "latency_ms": 340},
    "agent_b": {"status": "200 OK", "latency_ms": 890},
    "total": {"status": "success", "latency_ms": 1230}
}
# Dashboard: all green. Everything looks fine.

# What actually happened:
reality = {
    "agent_a_to_b_message": {
        "sent": True,
        "received": True,
        "understood": False,  # B parsed it as a different task
        "context_freshness": "stale_by_12_seconds",
        "b_output_quality": 0.23,  # Garbage, but HTTP 200
        "a_used_b_output": True,   # A didn't check quality
        "final_result": "wrong"    # User gets incorrect answer
    }
}

# With rosud-call message-level tracing:
from rosud_call import Channel, Tracer

channel = Channel.create(
    agents=["planner", "researcher", "writer", "reviewer"],
    tracing=Tracer(
        # Trace every message between agents
        level="message",  # Not just "span"

        # Capture WHY messages were sent/not sent
        reasoning_capture=True,

        # Detect stale context at message boundaries
        freshness_check=True,

        # Track output quality at each handoff
        quality_scoring=True,

        # Alert when message was ignored by recipient
        delivery_confirmation="semantic",  # Not just "received bytes"
    )
)

# Debug output when something goes wrong:
trace = channel.get_trace(workflow_id="abc-123")
print(trace.find_failure())
# "Agent B received message at T+340ms but processed it with context
#  from T-12000ms. Output quality scored 0.23 (threshold: 0.7).
#  Agent A consumed this output without quality check.
#  Root cause: stale context at message boundary B←A."
# Time to debug: 30 seconds (not 3 days)

Why Teams Debug for Days

The futureagi research documents three real failure cases that take days to debug without message-level tracing:

  1. Silent quality degradation: every span is green, output is wrong
  2. Reasoning loops: agent calls itself 47 times (invisible in infrastructure trace)
  3. Context contamination: Agent C uses Agent A's output that was meant for Agent B

All three are communication failures. The infrastructure is healthy. The messages between agents are broken.

# The debugging time equation:

# Without message-level tracing:
debug_time = (
    "notice_problem_hours" +      # User reports bad output
    "reproduce_locally_hours" +    # Non-deterministic, may not reproduce
    "check_infrastructure_hours" + # All green, waste of time
    "add_logging_redeploy_hours" + # Instrument, wait for recurrence
    "find_root_cause_hours"        # Finally find the message boundary issue
)
# Average: 2-5 days per incident

# With rosud-call message tracing:
debug_time = (
    "alert_fires_seconds" +        # Quality score dropped below threshold
    "open_trace_seconds" +         # See exactly which message failed
    "read_root_cause_seconds"      # "Stale context at boundary X←Y"
)
# Average: 5-30 minutes per incident

# ROI calculation:
# Engineering team: 5 agents, 10 incidents/week
# Without: 10 * 16 hours = 160 engineer-hours/week on debugging
# With: 10 * 0.5 hours = 5 engineer-hours/week
# Savings: 155 hours/week = $46,500/month (at $75/hr loaded cost)

The Bottom Line

Your agents are distributed systems. Your debugging tools treat them as programs. The gap between "infrastructure healthy" and "agent correct" is where your team spends days.

rosud-call adds message-level tracing to your agent communication. Not just "message was delivered" but "message was understood, processed with fresh context, and produced quality output." Debug in minutes, not days. See exactly where the communication broke down.

Stop staring at green dashboards while your agents produce wrong answers.


Debug your agents in minutes: rosud.com/docs