Getting Your First Agent Live

Measuring Agent Success in Production: Why Your Metrics Matter More Than Your Model

Matt Doughty Matt Doughty CEO & Co-Founder, Prefactor
6 min read
Abstract illustration: Measuring Agent Success in Production: Why Your Metrics Matter More Than Your Model

By the end of this article you will know how to set baselines before your agent goes live, which three metric categories separate high-ROI deployments from low-ROI ones, and what early-warning signals to instrument so problems surface in hours rather than weeks.

Only 3% of companies are successfully scaling agentic AI across multiple departments, even as 62% are actively experimenting, according to an IDC and AWS survey of more than 900 organizations conducted in November 2025. The gap is not explained by model quality. 88% of agent pilots never reach production, and the failure traces almost entirely to operational and governance gaps. If you cannot measure what your agent is doing, you cannot fix it when it drifts, and you cannot justify expanding it when it works.

Why the pilot-to-production shift breaks your existing metrics

In a pilot, your data is curated, your volume is low, and a human reviews edge cases before they cause harm. In production, none of that is guaranteed. Input distribution shifts. Volume spikes. Tool dependencies fail. The agent makes decisions no one anticipated during design.

The metrics that worked in your pilot, typically accuracy on a test set and average response quality, do not catch these failure modes. A test-set accuracy of 95% tells you nothing about what happens when a new document format arrives, a downstream API times out, or the agent encounters a request that sits at the boundary of two decision branches.

The three categories below give you full coverage across what production actually demands. They apply whether you are running a single customer service agent or coordinating a multi-agent system.

The three metric categories

1. Performance metrics: can the system sustain load?

Performance metrics measure whether the agent can operate at the volume and speed your workflow requires. The three that matter most are latency, throughput, and cost per task.

Latency should be measured at P50, P95, and P99, not as an average. Averages hide the long tail. Uber’s internal agent platform, which runs thousands of production agents, holds P99 token-exchange latency under 40 milliseconds. Your threshold will depend on your workflow, but you need a threshold set before deployment, not after the first complaint.

Throughput is the number of tasks completed per unit time at acceptable quality. Set a minimum floor based on the process the agent replaces. If the agent handles 500 shipment evaluations a day, it needs to complete them within the window that keeps downstream operations running.

Cost per task needs to be tracked at the task level, not the monthly invoice level. General Mills’ supply chain optimization agent evaluates more than 5,000 daily shipments and has produced over $20 million in cost savings since fiscal 2024. That number is only meaningful because cost per evaluation was tracked alongside it.

2. Behavior metrics: is the agent doing what you think it is?

Behavior metrics sit inside the agent’s execution loop. They tell you whether each step in the agent’s decision chain is working as designed.

flowchart TD
    A[Task received] --> B[Tool selection]
    B --> C{Tool call correct?}
    C -- Yes --> D[Action executed]
    C -- No --> E[Log tool error]
    D --> F{Step completed?}
    F -- Yes --> G[Next step]
    F -- No --> H[Log step failure]
    G --> I[Task outcome]
    E --> I
    H --> I

The three behavior metrics with the most diagnostic value are step-level success rate, tool call accuracy, and decision quality at branch points.

Step-level success rate measures what fraction of individual steps within a task complete without error or retry. A task can appear to succeed at the outcome level while accumulating retries internally. Those retries increase latency and cost and signal that a tool integration or prompt is degrading.

Tool call accuracy measures whether the agent selects the right tool for a given context and passes it correctly formed inputs. HSBC’s anomaly-detection agents achieved a 50% reduction in false positives in their fraud detection workflow, a result that depended on tool calls consistently reading the right signal combinations. A drop in tool call accuracy is often the first visible sign of input distribution shift.

Decision quality at branch points applies to agents that choose between paths based on context. Log the branch taken, the confidence score where available, and the downstream outcome. Over time, this data tells you whether the agent’s decision logic is holding as input variety increases.

For a structured approach to instrumenting these signals, the guide on implementing agent observability covers tooling choices and logging schema in detail.

3. Outcome metrics: did anything actually change?

Outcome metrics connect agent activity to the result the deployment was funded to produce. They are the only metrics that justify continued investment, and they require a pre-deployment baseline to be meaningful.

flowchart TD
    A[Define target outcome] --> B[Measure baseline before deployment]
    B --> C[Deploy agent]
    C --> D[Measure same outcome in production]
    D --> E{Delta positive?}
    E -- Yes --> F[Attribute and report ROI]
    E -- No --> G[Review behavior metrics]
    G --> H[Adjust and re-measure]

Klarna reduced customer service resolution time from 11 minutes to under 2 minutes across 23 markets, and repeat inquiries dropped 25%. Those numbers are credible because Klarna had pre-deployment baselines to compare against. Without the 11-minute figure, the 2-minute figure is just a number.

Commonwealth Bank’s fraud detection agent monitors more than 80 million signals daily and reduced fraud losses by 20% in the first half of fiscal year 2026. The 20% figure is the outcome metric. The 80 million signals is the throughput metric. Both matter, but only the outcome metric answers the question the board is asking.

Average ROI from agentic AI deployments sits at 171%, with 74% of executives reporting they achieved ROI within the first year. The deployments that reach those numbers share a pattern: the outcome was defined and baselined before the agent went live, not after.

Early-warning signals and the trap of looking good

The most common failure mode is an agent that scores well on all three metric categories for the first four to six weeks, then degrades slowly. The degradation is hard to catch because each individual metric moves within a range that looks acceptable until several drift together.

Instrument these four signals from day one: retry rate per task, task abandonment rate, human escalation rate, and cost per task trend over time. None of them alone is alarming. All four moving in the wrong direction across the same two-week window means your agent is encountering something its design did not account for.

For the governance layer that sits above these signals, the AI governance framework and runtime governance versus pre-deployment review articles cover how to structure oversight without adding friction that slows the agent down. Tools like Prefactor provide a category example of how real-time evaluation can be layered on without rebuilding the agent itself.

If you are building the evaluation process from the ground up, the guide to evaluating AI agents walks through test design, human review cadences, and how to score agents consistently across model updates.

Where to start

Set your outcome baseline before your agent touches production data, not after. Then build the behavior and performance instrumentation that will let you diagnose any drop in that outcome. Take the agent readiness assessment to find out where your measurement gaps are before they become production incidents.

Matt Doughty Matt Doughty CEO & Co-Founder, Prefactor

Founder of Prefactor, writing on the operational reality of getting AI agents into production — evaluation, observability, governance, and the plumbing assistants never needed.

Frequently asked questions

What is the difference between pilot metrics and production metrics for AI agents?

Pilot metrics measure performance on curated data with a human in the loop. Production metrics measure performance on real volume with real variability and no guaranteed oversight. The gap between the two is where most agents fail.

How do I know if my agent's latency is acceptable for production?

Set a target before deployment based on the workflow it replaces. If the agent handles customer queries, a P99 response time above the threshold that causes users to abandon the session is your ceiling. Uber's production agent platform holds P99 token-exchange latency under 40ms; use your own workflow's tolerance, not an industry default.

Which metric category matters most: performance, behavior, or outcomes?

Outcomes determine ROI, but you cannot diagnose a drop in outcomes without behavior metrics, and you cannot sustain throughput without performance metrics. All three categories are load-bearing. Tracking only outcomes is like monitoring a building's occupancy without checking the structural load.

How often should I review production agent metrics?

Review performance metrics daily during the first 30 days, then weekly once baselines stabilize. Review behavior metrics after any model update, prompt change, or tool integration change. Review outcome metrics monthly against the baseline you set before deployment.

Stay ahead of the curve

No spam. Unsubscribe anytime. A resource by Prefactor.

Almost there — check your inbox to confirm your subscription.