Skip to main content
GlossaryAI in TestingModel Observability
AI in Testing Modern Term

Model Observability

Model observability is the practice of instrumenting an AI system in production to continuously capture its inputs, outputs, latency, confidence scores, and downstream outcomes — giving teams visibility into how a model is actually behaving with real traffic, not just how it performed on a pre-release test set.

A model that passed every pre-release evaluation can still fail silently in production, because production traffic is never identical to a test set — real users phrase things differently, edge cases the test set didn't cover show up at scale, and the underlying data distribution shifts over time. Observability is what catches that gap: logging enough about every real request and response to reconstruct what happened when something goes wrong, and to notice degradation before a user reports it.

A useful observability setup tracks more than raw accuracy — it captures latency percentiles (not just averages, since tail latency is what users actually feel), confidence or uncertainty scores per response, rates of fallback, refusal, and error responses, and a sampled feed of real inputs and outputs for periodic human review. The common gap teams hit: logging the model's output but not enough of the input context to actually debug a bad response later, which makes the log data collected but functionally useless when an incident happens.