REBRANDING NOTICE: EzDeploy is now Roptal. Platform launching on roptal.com. Docs: docs.roptal.com.REBRANDING NOTICE: EzDeploy is now Roptal. Platform launching on roptal.com. Docs: docs.roptal.com.REBRANDING NOTICE: EzDeploy is now Roptal. Platform launching on roptal.com. Docs: docs.roptal.com.REBRANDING NOTICE: EzDeploy is now Roptal. Platform launching on roptal.com. Docs: docs.roptal.com.
Oryvo
← All articles

Model Deployment Monitoring Checklist: Latency, Errors, GPU Memory, and Drift

A production monitoring checklist for ML endpoints: availability, p95 latency, GPU memory, queue depth, prediction shifts, drift, and cost alerts.

Model Deployment Monitoring Checklist: Latency, Errors, GPU Memory, and Drift

Model monitoring is not one dashboard. It is a set of signals that answer four questions:

  1. Is the endpoint available?
  2. Is it fast enough?
  3. Is the infrastructure healthy?
  4. Is the model still behaving as expected?

This checklist covers the minimum production baseline.

Availability

Track endpoint health separately from process health.

SignalTargetAlert threshold
HTTP success rate> 99.9%< 99.5% for 5 minutes
Health check success100%2 consecutive failures
Ready replicasExpected minimumBelow minimum for 2 minutes

A process can be running while the model is not loaded. Your /health endpoint should verify model readiness, not just return a static response.

Latency

Record p50, p95, and p99 latency. Average latency hides tail problems.

p50: typical request
p95: slowest 5% of requests
p99: slowest 1% of requests

Example alert rules:

  • p95 exceeds 500ms for 10 minutes
  • p99 exceeds 2 seconds for 5 minutes
  • latency rises 50% compared with the prior 24-hour baseline

Break latency down by stage when possible: request parsing, tokenization, model inference, serialization, network response. Otherwise you will not know whether the GPU is the bottleneck.

GPU Health

SignalWhy it mattersAlert threshold
GPU utilizationCapacity planning> 90% sustained
VRAM usedOOM prevention> 85% sustained
GPU temperatureHardware stability> 85°C
Power drawDetect throttlingUnexpected drop under load
CUDA errorsFailing runtimeAny occurrence

High GPU utilization is not always bad. A stable 85% utilization with acceptable p95 latency is efficient. The problem starts when queue depth grows or p95 latency climbs with it.

Request Quality Signals

For classifiers, track label distribution. If a sentiment endpoint normally returns 70% positive and suddenly returns 98% negative, investigate before calling it model drift.

For generative models, track:

  • input token count
  • output token count
  • tokens per second
  • timeout rate
  • refusal/error rate

Do not log raw customer prompts by default. Log length, hashes, aggregate statistics, and redacted error categories.

Drift Monitoring

Use Population Stability Index (PSI) to compare current input or output distributions with a baseline.

PSI valueMeaningAction
< 0.1StableContinue monitoring
0.1-0.2Moderate changeInvestigate data source changes
> 0.2Significant changeReview model performance and retraining data
> 0.3Severe shiftConsider rollback or traffic reduction

PSI is a signal, not proof of a bad model. A marketing campaign, seasonal trend, or upstream product change can legitimately shift inputs.

Cost Alerts

Set a budget before you need one:

  • Daily GPU spend above expected range
  • Projected monthly spend above budget
  • GPU instance running with zero requests for 30 minutes
  • Egress above expected baseline

The last alert catches an expensive and common failure: a permanent GPU endpoint serving no traffic after a DNS or application integration failure.

Minimum Dashboard

One dashboard should show:

Availability:     success rate, health checks, replicas
Performance:      p50/p95/p99, queue depth, throughput
Infrastructure:   GPU utilization, VRAM, temperature, CUDA errors
Model behavior:   output distribution, drift score
Cost:             spend today, forecast, idle time

Without these signals, an ML deployment is a black box. Roptal brings deployment logs, health checks, cost visibility, and drift signals into the same operating surface so teams do not need to assemble it from separate cloud consoles.