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

推荐订阅源

D
Docker
I
InfoQ
L
LangChain Blog
阮一峰的网络日志
阮一峰的网络日志
Y
Y Combinator Blog
博客园_首页
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
C
Check Point Blog
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Engineering at Meta
Engineering at Meta
B
Blog
爱范儿
爱范儿
Stack Overflow Blog
Stack Overflow Blog
aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学
F
Fortinet All Blogs
月光博客
月光博客
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
AI agents are opaque. Jaeger v2 + OTel GenAI conventions ...
Andrew Kew · 2026-04-27 · via DEV Community

AI agents are distributed systems. They fan out across LLM calls, tool invocations, memory lookups, and multi-step reasoning loops — often asynchronously. But until recently, the observability tooling hadn't caught up. You'd get logs, maybe a dashboard, but no trace of what actually happened across a full agent run.

That's the gap Jaeger v2 is positioned to close — and it's not a stretch.

What actually changed in Jaeger v2

Jaeger v2, released in late 2024, didn't just add features. It replaced its entire internal architecture with the OpenTelemetry Collector framework as the core foundation.

What that means in practice:

  • Native OTLP ingestion. No more translation layer from OTLP → Jaeger internal format. Telemetry flows in as-is, with no data loss from conversion.
  • Single binary, OTel-native config. The old jaeger-agent, jaeger-collector, jaeger-ingester, jaeger-query split is gone. One binary, configured via the same YAML model as OTel Collector.
  • Access to the full OTel Collector ecosystem. Tail-based sampling, span-to-metric connectors, PII filtering processors, Kafka pipelines — all available without Jaeger maintaining separate implementations.
  • Tail-based sampling, previously hard to retrofit, is now first-class via the upstream OTel contrib processor.

The architecture shift means Jaeger v2 inherits everything OTel ships — including the new GenAI semantic conventions.

The GenAI conventions: tracing AI agents properly

OpenTelemetry is now actively developing semantic conventions specifically for AI workloads. These define how to represent:

  • Model spans — individual LLM inference calls (token counts, model name, latency)
  • Agent spans — the higher-level reasoning loops and orchestration steps
  • Events — prompt inputs, completions, tool call results
  • Metrics — token usage, latency distributions, error rates

And coverage is already provider-specific: OpenAI, Anthropic, AWS Bedrock, and Azure AI Inference all have dedicated conventions. There's even a draft for Model Context Protocol (MCP) — so tool calls via MCP-compatible servers can be traced as first-class spans.

These conventions are still in Development status, but the instrumentation is shipping now. Libraries like LangChain, LlamaIndex, and OpenAI's own SDKs are beginning to emit OTel-compatible telemetry. Jaeger v2 — being natively OTLP — can receive all of it.

Why this matters for teams building agents

The classic distributed tracing use case is: trace a request across microservices, find the slow hop, fix it. The AI agent version is: trace a user prompt → agent planning span → LLM call → tool invocation → second LLM call → final response. Across potentially different services, with retries, branching, and non-determinism.

Without proper trace context propagation, this is a black box. With OTel GenAI conventions + Jaeger v2, you get the full picture — latency per LLM call, token consumption, which tool calls fired and how long they took, where the reasoning went sideways.

That's debugging capability that didn't exist in a standardised form until now.

What to do

  • Already on Jaeger v1? Check the v1→v2 migration guide. The architecture shift is real but the storage backends are backward-compatible.
  • Building AI agents? Start instrumenting with OTel GenAI semconv now, even in Development status. You'll be ahead of the curve when it stabilises, and Jaeger v2 will ingest it today.
  • Using LangChain/LlamaIndex/OpenAI SDKs? Check their OTel instrumentation status — several already support it or have experimental packages.
  • Not on Jaeger? The GenAI conventions are backend-agnostic. Any OTLP-compatible backend (Grafana Tempo, Honeycomb, etc.) can receive this telemetry.

Sources: The New Stack · Jaeger v2 release post · OTel GenAI semantic conventions

✏️ Drafted with KewBot (AI), edited and approved by Drew.