1. A team is designing an LLM observability strategy and debates whether to use OpenTelemetry (OTel) directly versus a purpose-built tool like Langfuse or Braintrust. Which statement MOST accurately describes the relationship between OpenTelemetry and LLM-specific observability platforms?
- A. OpenTelemetry and LLM observability platforms are mutually exclusive; you must choose one architecture.
- B. OpenTelemetry provides the general-purpose instrumentation and data transport layer (traces, spans, attributes), while LLM-specific platforms add semantic conventions, token/cost analytics, evaluation scoring, and AI-focused UI — they are complementary, not competing.✓ Correct
- C. LLM observability platforms like Langfuse internally replace OpenTelemetry with a proprietary protocol to reduce latency overhead.
- D. OpenTelemetry's GenAI semantic conventions make purpose-built LLM observability platforms obsolete for production use cases.
Explanation
Option B is correct. OpenTelemetry is an open standard for telemetry data collection and export, and LLM platforms like Langfuse can ingest OTel traces or provide their own SDKs. They are complementary: OTel gives you vendor-neutral instrumentation, while LLM platforms give you AI-specific analysis, scoring, and dashboards on top of that telemetry. Option A is false; many teams use both in their stack. Option C is false; Langfuse supports OTel ingestion and does not replace it with a proprietary protocol. Option D overstates OTel's current scope — the GenAI semantic conventions standardize attribute names but do not provide evaluation scoring, human feedback collection, or experiment comparison.