Zenaique

Match each LLM app incident pattern to the dashboard signal that catches it first

Match pairs·Medium·4.0 · 0·~2 min·Asked atCloudflareDeepseekSierra
Attempt it

Drag each answer to line up with its matching prompt

Silent vendor snapshot roll

Sustained 4xx 'model_not_found' or 'deprecated' on a pinned model id

Rate limit cascade

Faithfulness judge score drops on RAG traces with the new index version

Cost runaway from a recursive agent loop

Per tenant judge score breakdown shows one cohort tanked

Hallucination spike after retrieval index rebuild

Cost per request p99 jumps, output token histogram skews right

Per tenant cohort regression hidden in aggregate

Spike in 429 count combined with rising p99 latency on the primary provider

Model deprecation

Daily canary eval set fails the rolling baseline control chart

TL;DR

Each incident class leaves a fingerprint on a specific dashboard panel; pairing them up is the runbook for going from page to root cause fast.

Memory aid
Sign in to see the mnemonic that makes this stick.
Easy to grasp

Picture a building with smoke detectors in every room. A fire in the kitchen triggers the kitchen detector first, not the bedroom one. If you know which detector points where, you walk straight to the room when the alarm goes off instead of searching the whole building. LLM dashboards work the same way: each kind of incident sets off its own panel first. A vendor snapshot roll sets off the canary eval panel. A bill-runaway sets off the cost panel. A rate-limit cascade sets off the latency-plus-429 panel. The pairing in this question is the smoke-detector map, so the on-call walks to the right room.

Concept explanation~2 min read

Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.

A production LLM application running for a year will see most of the headline incident classes at least once. The cheap discipline that separates teams who diagnose them in minutes from teams who diagnose them in days is having a dashboard whose panels are designed around the cause signatures, not as a generic observability surface.

The six matches in this question are the curriculum. Each one tells the on-call where to look first when the alert fires.

Snapshot rolls and the canary

A silent vendor snapshot roll happens when a provider model alias like gpt-4o or claude-3-5-sonnet advances to a newer snapshot without the application team noticing. The model's behavior shifts: refusal patterns change, output length distribution shifts, judge scores on representative inputs move by a few percentage points.

The signal that catches this reliably is the daily canary eval. The canary is a curated 50-to-200 question set rerun every 24 hours against the current production model. Because the input set is fixed, any score movement is attributable to the model (or whatever is downstream of the model, prompt, retrieval). A canary score that drops 2 standard deviations below its rolling 14-day baseline is the page.

Why live judge scores are the wrong alert source for this: live scores shift constantly with traffic mix, time of day, tenant onboarding, prompt edits. A snapshot-roll signal of 5 percent on a metric whose natural variance is 8 percent is invisible in live scores and obvious in canary scores. The canary is the deterministic baseline that makes the small signal detectable.

Rate-limit cascades and the correlated panel
Cost runaways and p99
Index rebuilds and faceted faithfulness
Cohort regressions and the per-tenant facet
Model deprecation and the error-class panel
Sign in to unlock the full deep dive.

Situations where this technique stops working.

Sign in to see when this approach fails.

2–4 min · Everything important, quickly.

Sign in to see the quick scan of the deep dive.

Real products, models, and research that use this idea.

  • Langfuse and Phoenix dashboards both expose per-trace tag faceting that supports the version-broken faithfulness panel for the index-rebuild signature.
  • Most 2025 incident postmortems published by AI product teams reference at least one of these six patterns by name.
Sign in to see more production examples.

What an interviewer would ask next. Try answering before peeking at the approach.

QWhich two of these incident classes have the shortest mean time to detection on a well-built dashboard?
A

Model deprecation (clean error code) and snapshot roll (canary delta), both have unambiguous signals; the others require correlating two or more panels.

2 more follow-ups an interviewer would ask next. Sign in to reveal them.

Red flags & common mistakes

The phrases that signal junior thinking. Click to expand.

Most common mistake

Watching only the global aggregate quality metric and missing per-tenant regressions because one tenant's tank is averaged out across a healthy fleet.

Sign in to see all red flags and common mistakes.

60 second bullets to scan on the way to the call.

  • The six headline incident classes and their distinctive dashboard signatures

  • Why the canary eval is the right alert source for snapshot-roll detection

Sign in to unlock the revision sheet.

Primary sources. Browse if you want the original framing.

Similar questions

Same topic, related formats. Practice these next.

4 curated
Next question
Why a circuit breaker around the primary LLM provider is more than a fancy retry
Flashcard·Medium