A team enables Databricks Agent Monitoring on a deployed LangChain agent. Agent Monitoring is configured with the same LLM judge metrics used in offline evaluation: faithfulness and answer relevance. What is the PRIMARY operational benefit of running Agent Monitoring continuously in production compared to running only periodic offline evaluations?
Show answer & explanation
Correct answer: D
WHY D is correct: The core advantage of continuous production monitoring over periodic offline evaluation is coverage of live, dynamic traffic. Production queries differ from curated evaluation sets — they include unanticipated phrasings, edge cases, domain shifts, and adversarial patterns. Agent Monitoring detects regressions caused by changes in user behavior, corpus drift, or downstream model updates in real time, allowing the team to respond before widespread user impact occurs. WHY NOT A: Agent Monitoring does not inherently use a 'faster' LLM judge model. Both offline and online evaluation can use the same judge, and cost differences depend on sampling rate, not a fixed 50% reduction. WHY NOT B: Both offline evaluation results (in MLflow) and Agent Monitoring results can be stored with versioning in Databricks. The storage mechanism is not the primary functional difference between them. WHY NOT C: Agent Monitoring and offline evaluation serve complementary roles in the Gen AI application lifecycle. Offline evaluation provides a controlled, reproducible quality gate before deployment. Production monitoring is not a replacement — the two phases are explicitly distinguished in the Gen AI lifecycle framework.