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

推荐订阅源

月光博客
月光博客
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
H
Help Net Security
小众软件
小众软件
The Cloudflare Blog
人人都是产品经理
人人都是产品经理
Apple Machine Learning Research
Apple Machine Learning Research
S
SegmentFault 最新的问题
Last Week in AI
Last Week in AI
爱范儿
爱范儿
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
博客园 - 【当耐特】
V
Visual Studio Blog
大猫的无限游戏
大猫的无限游戏
博客园_首页
Jina AI
Jina AI
D
Docker
博客园 - 司徒正美
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Microsoft Security Blog
Microsoft Security Blog
阮一峰的网络日志
阮一峰的网络日志

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
What Your Production Agents Aren't Telling You: A Practic...
Paul Twist · 2026-06-27 · via DEV Community

What Your Production Agents Aren't Telling You: A Practical Guide to Agent Observability

The Debug Experience Nobody Talks About

Tuesday, 3 AM. Your agent has been running for 8 hours and just made a decision that cost your company $3,400. Your job: reconstruct exactly what happened. Not the model output. Not a summary. The complete path: Which prompt context did it see? Did it hallucinate data? Which tool did it call? What parameters did it pass? What did the tool return? Where did it go wrong?

This is not a problem you solve with application monitoring tools. Standard APM captures latency and errors. It doesn't capture reasoning. It doesn't show you the moment an agent decided to call the wrong API or misinterpreted a tool response.

In 2026, this is table-stakes. Most engineering organizations have no structured testing around agent behavior, and the result is fragile deployments where non-deterministic outputs go unvalidated, regressions slip through unnoticed, and debugging requires reconstructing which prompt version produced which output.

Here's the thing: observability for agents is not observability for applications. You need different instruments.

What Production Agents Actually Need to Log

When an agent fails in production, you need to know:

1. The full decision path — Every model call, with the exact context the agent saw, the prompt injected, the temperature/top_p used. Not a summary. The actual bytes.

2. Tool invocations with raw inputs and outputs — When a hallucinating agent might pass an invalid date format or a nonexistent ID to a tool, you need to capture the raw input parameters the agent sent to the tool and the raw output it received back. If the tool errors, you need to know: Was the agent's reasoning wrong, or was the tool call malformed?

3. Cost attribution per step — Not total cost. Per-step cost: This LLM call cost $0.12. This tool invocation had 0 cost. This reasoning loop cost $0.04. If an agent burned $3,400 in 8 hours, you need to isolate which steps are the problem.

4. Session context across restarts — Agents are non-deterministic and multi-step, so request-level logs miss the reasoning, tool calls, and decisions that matter. If your agent restarts, you need the previous session's reasoning to hand off context correctly.

5. Failure reconstruction without trial-and-error — Agent failures rarely produce stack traces and error codes, so effective agent debugging requires reconstructing the full execution path across every model call, tool invocation, and retrieval step.

Most frameworks give you 1 or 2 of these. Production teams need all 5.

Where Frameworks Stop and Infrastructure Begins

Let me be specific. A language model framework (LangGraph, Claude native APIs, Bedrock Agents) handles orchestration logic: "If tool A returns X, then call tool B." That's not an observability problem. That's orchestration.

But the moment you run agents on a team:

  • Multiple people need to see what agents did (without console sprawl)
  • Cost needs to be attributed to business units or agents
  • Sessions need to persist when infrastructure restarts
  • Compliance teams need audit trails
  • You need to compare "before the prompt change" vs "after"

These are not framework problems. They're infrastructure problems.

This is where a trace is not just a single log entry but a parent-child hierarchy of events that connects every model interaction, every data retrieval, and every final response. The infrastructure layer needs to capture that hierarchy without touching your agent code.

A Practical Observability Pattern for Production Agents

Here's what mature teams are building:

Layer 1: Gateway tracing
Every LLM call goes through a gateway (LiteLLM, or similar). The gateway captures:

  • Timestamp, model, temperature, top_p
  • Exact prompt sent
  • Token counts (input + output)
  • Cost per token
  • Provider latency
  • Any errors or retries

This is non-invasive. Your agent code doesn't change.

Layer 2: Agent session logging
The control plane (agent orchestration layer) logs:

  • Session ID (unique per agent run)
  • Agent ID (which agent is running)
  • Tool invocations: name, parameters, response
  • Model decisions (e.g., "decided to call tool X because of condition Y")
  • Cost per step rolled up to the agent
  • Checkpoints where the agent could have restarted

Layer 3: Structured failure capture
When something goes wrong, you capture:

  • The exact state when the failure occurred
  • All context the agent had access to
  • Which model call or tool invocation failed
  • The human-readable "what we tried to do" context

Layer 4: Replay capability
You can take a failure trace and replay it in dev:

  • With the same context
  • With the same model
  • With the same tools
  • But with a different prompt or temperature to see if the issue was model-specific or logic-specific

How to Evaluate Agent Observability Infrastructure

When you're comparing agent platforms or building your own, use this checklist:

  • [ ] Can I see the complete decision path for a single agent run?
  • [ ] Can I isolate which tool call or reasoning step caused a problem?
  • [ ] Can I query "all runs where the agent called tool X with parameter Y"?
  • [ ] Does the system attribute cost to individual steps or agents?
  • [ ] Can I replay a production failure in dev without mocking?
  • [ ] Does the system capture tool inputs and outputs verbatim (not summaries)?
  • [ ] Can I export traces in a standard format (OTEL, JSON) for downstream analysis?
  • [ ] Is there a cost to capturing traces (does the gateway add latency)?

If your platform can't check most of these, you're missing the observability layer that production teams need.

The Signal from Production Teams

The conversation in 2026 is no longer about which framework you use. It's about multi-agent workflows, MCP tool access, orchestration, observability, and governance. Observability isn't a nice-to-have. It's what separates agents that survive production from agents that get shut down after the first incident.

LiteLLM Agent Platform handles this natively because the control plane captures every step: session boundaries, tool calls, costs, and decisions. The platform is purpose-built to persist session state, attribute costs, and provide structured tracing. This isn't bolted-on observability. It's foundational.

If you're shipping agents to production in 2026, treat observability as a first-class requirement. Not optional. Not "we'll add it later." Now.


What's your agent observability strategy? Are you capturing decision paths? How are you handling cost attribution? Drop a comment if you've built something that works at scale.