Brent Haskins / Applied AI
AI Observability Is Not About Traces — It's About Product Outcomes
Most AI observability tools obsess over token traces and latency. That's infrastructure monitoring, not product engineering. The real gap is connecting AI behavior to user outcomes: citation accuracy, task completion, support load reduction. Based on the 2026 tool landscape, this post argues for a stack that separates infrastructure from evaluation, using custom evaluators and real-user monitoring tailored for AI. By 2026-07-07, teams that treat observability as a product surface—not an ops dashboard—will ship more reliable AI experiences.
The short answer
Every team building with LLMs eventually hits a wall: their observability dashboard shows tokens generated, latency, and error rates—but nobody can explain why users are abandoning the chat after the third turn. That's because most AI observability tools were built for ML engineers debugging model behavior, not product engineers measuring user-facing quality.
The best AI observability in 2026 isn't about traces and infrastructure monitoring; it's about surfacing model behavior in the context of product outcomes. Teams that separate infrastructure monitoring (Datadog, New Relic) from product evaluation (custom evaluators, session replays, business metrics) ship more reliable AI experiences. The tools that matter most are the ones that let you ask: "Did this answer help the user complete their task?"
Key takeaways
- Start with custom evaluators for faithfulness and relevance before scaling traces. A single evaluator tied to a business metric beats a full observability dashboard that nobody reads.
- Treat observability as a product surface: design dashboards for cross-functional stakeholders, not just ML engineers. Include empty states, error counts, and "I don't know" rates.
- Full-stack correlation is table stakes. You need to connect a frontend session replay to the specific LLM call that caused a user to rage-click. Tools like Datadog RUM can do this if you instrument correctly.
- Notebook-first tools are for experimentation; production observability needs dashboards with alerts tied to business metrics like conversion or support ticket creation.
- Open-source tools with SQL access (like Laminar's agent observability) give you the flexibility to define custom metrics without waiting for a vendor to ship a feature.
- Real user monitoring for AI should capture response quality, not just performance. Latency doesn't matter if the answer is hallucinated.
The real problem: AI observability solves for the wrong question
Most articles about AI observability in 2026 (including the sources I used) focus on tracing LLM calls, measuring latency, and detecting malicious inputs. That's a 2024 mindset. The hard problem isn't "Is my model down?" but "Is my model helping users?".
The Confident AI comparison of LLM observability tools explicitly notes that built-in metrics for faithfulness, hallucination, and conversational coherence are limited—especially in tools that started as infrastructure monitors. Meanwhile, Laminar's Langfuse alternative pitches "signals" and a debugger for agents, acknowledging that agents fail in ways traces can't capture: wrong tool use, infinite loops, irrelevant context.
Product engineers need to close this gap. If your observability stack can't tell you why a user got a citation from page 47 when the answer was on page 3, you're not observing—you're just monitoring.
What product-level observability looks like in practice
Consider a RAG system for customer support. The infrastructure side (Datadog, New Relic) tells you query volume, P99 latency, and error rates. That's fine for on-call. But product-level observability answers:
- What percentage of answers include a citation the user can verify?
- How often does the system say "I don't know" instead of hallucinating?
- Is the user rephrasing the same question, indicating a failed interaction?
The AI Multiple guide to agentic monitoring mentions tool usage and evaluations but stops short of prescribing product metrics. That's where you need custom evaluators—scripts that score each response on relevance, tone, or factual accuracy. Ship them as part of your inference pipeline, not as a post-hoc analysis.
A real example from a shipped product: track the "answer rejected" event (user clicks thumbs down or starts typing immediately after the AI's response). Correlate that to the exact retrieval chunk and prompt template. That's product observability. It turns "the model is working" into "the model is working for the user."
Choosing the right observability stack in 2026
Based on the current tool landscape, here's my recommended split:
- Infrastructure monitoring: Datadog or New Relic. They cover full-stack traces and RUM, and their AI features (while limited on evaluation) integrate with existing alerting workflows.
- LLM evaluation: Use a dedicated platform or build your own evaluators. Open-source options like Laminar offer trace compression (20x) and SQL access, which means you can query for any pattern. Confident AI provides notebook-first evaluation that teams can reuse in production.
- Real user monitoring: Extend standard RUM (e.g., Datadog RUM, WP Rocket's tools) to capture AI-specific events: response displayed, user edit, response depth, and sentiment. The goal is to see the session holistically, not as isolated API calls.
- Avoid all-in-one traps: Some vendors promise everything from tracing to evaluation. But the features that matter for product impact—custom scoring, business metric correlation—are often afterthoughts. Evaluate carefully.
Closing: Build observability as product debt, not infrastructure debt
The teams that will win with AI in 2026 aren't the ones with the most sophisticated trace pipelines. They're the ones that can answer, in a weekly review, "How many users got a helpful response yesterday, and how do we know?"
Start small. Pick one failure mode that affects your product's core value proposition. Write a custom evaluator. Connect it to a business metric. Measure improvement. Then iterate. Any observability tool can show you a trace; only a product-minded approach shows you whether you're shipping value.
FAQ
Questions people ask about this topic.
What's the first thing my team should set up for AI observability?
Start with one custom evaluator: faithfulness or relevance for your most common failure mode. Don't buy a full-stack tracing tool until you know what signal you're trying to measure. Ship that evaluator into production, tied to a business metric (e.g., support ticket deflection). Expand from there.
How do I choose between open-source and commercial AI observability tools?
If you need SQL access and the ability to debug agent loops at scale, open-source like Laminar (with trace compression) gives flexibility. If you already use Datadog or New Relic for backend monitoring, their AI features are worth evaluating—but check whether they cover LLM-specific metrics like hallucination or conversation coherence before committing.
Should I use a notebook-first tool for production observability?
Notebook-first tools (e.g., Confident AI's experimentation interface) are great for ML teams iterating on prompts and models. But product engineers need dashboards that surface AI behavior alongside conversion rates or session replays. Keep notebooks for R&D; use evaluation-first platforms with UI dashboards for production monitoring.
Sources