Measuring AI agent performance means tracking four categories: Execution (did it complete the task), Quality (was the output correct), Efficiency (what did it cost), and Safety (did it stay within its guardrails). If task success clears your human baseline and cost per task beats the manual alternative, the agent is working. Everything else is detail you add as you grow.

The short answer: the four numbers that tell you if your agent works

The four categories come from the n8n metrics framework (n8n, June 5, 2026):

  • Execution: Task success rate (completions / total attempts) and p95 latency (the speed 95% of runs beat, which catches outliers better than the average).
  • Quality: Accuracy, hallucination rate, and schema compliance (does the output structure let the next step consume it).
  • Efficiency: Token costs (input and output tracked separately) and cost per task.
  • Safety: Policy violations, restricted-action attempts, and escalation rate (how often the agent correctly hands off to a human).
Agent performance
  • Execution: task success, p95 latency
  • Quality: accuracy, hallucination, schema
  • Efficiency: token cost, cost per task
  • Safety: violations, escalation rate
Four categories of agent measurement (n8n framework, June 2026)

Decision rule: an agent is working if task success beats your human baseline AND cost per task is below the manual cost.

One honest reality check before you go further: success rates run 70-80% on tasks under one hour, dropping below 20% on tasks over four hours, per the HCAST benchmark as reported by n8n (June 5, 2026). Agents are reliable on small, bounded work. Structurally unreliable on long tasks. Measure accordingly.

Why “it seems to be working” is not a measurement

You review a few outputs. They look fine. You move on. Then a billing spike shows up, or a downstream system starts getting garbage, and you realize you have no idea when things went wrong.

That is vibe-checking. It is not measurement.

The problem underneath it is non-determinism. Across 60,000 agent trajectories, researchers found a 24.9 percentage-point gap between best-case and worst-case runs on identical inputs, per KTH Royal Institute as reported by n8n (June 5, 2026). One good run proves nothing. You need a sample, not a glance.

24.9pp
best-case vs worst-case gap

On identical inputs, agent runs vary by nearly 25 percentage points between their best and worst outcomes. One good run proves nothing: you need a sample.

KTH Royal Institute, 60,000 agent trajectories, as reported by n8n (blog.n8n.io, June 5, 2026)

The coverage gap makes this worse: only 15% of teams had comprehensive evaluation coverage in 2025, though 72% believe testing drives reliability, per the Galileo State of Eval Engineering report as reported by n8n (June 5, 2026). Most teams are flying blind.

A single end-task accuracy score also hides where an agent went wrong. You need two altitudes to see it clearly.

Our analysis of 510 Trustpilot reviews across five no-code tools (June 2026, self-selected reviewers) shows what happens without measurement. One n8n reviewer: “Credential connections expire quickly, making requests start failing.” Without a tracking habit, you find out when the invoice arrives. The full breakdown is in our review of 510 real no-code tool reviews.

Task-level vs step-level: the two altitudes of measuring an agent

Two questions. Different answers.

Task-level: Did the agent reach the correct end state for the whole job? Ticket routed, record updated, draft sent. Task-level is what the business cares about.

Step-level: Did each individual step go right? Correct tool, right parameters, valid response shape. Step-level is where you find out why a task failed.

Galileo maps this to three altitudes: session (the whole task), trace (the tool-call sequence), and span (each individual operation). Example: a customer service agent may succeed at session level (ticket resolved) while failing at trace level (five unnecessary tool calls) and span level (one API error silently swallowed). Task looked fine. Process was wasteful and fragile. The full Galileo evaluation framework goes deeper on these altitudes for teams that want the enterprise-grade taxonomy.

Track task-level to know IF it works. Track step-level to know WHY it failed. Step-level evidence is already in your Make, n8n, or Zapier run logs, no separate platform needed. For grounding on what an AI agent actually is and how it makes decisions and calls tools, see the fundamentals guide before continuing.

The metrics that actually matter (by category, with what “good” looks like)

Pick three or four that match your task. More metrics is not better measurement, it is just more noise to ignore.

CategoryMetricPlain definitionReference target
ExecutionTask success rateSuccessful completions / total attemptsBeats your baseline; DataRobot guidance: 85%+ for production
Executionp95 latencySpeed 95% of runs beatTrack trend, not a fixed number
QualityGoal accuracyOutput matches intended goalDataRobot guidance: 85%+ production
QualityHallucination rateHow often agent produces wrong or fabricated outputDataRobot guidance: below 2% for customer-facing
QualitySchema complianceOutput structure lets the next step consume itHigh compliance; track failures per step
EfficiencyCost per taskTotal cost (tokens + platform) per completed taskMust beat manual cost
SafetyPolicy violationsActions outside defined scopeTarget: zero
SafetyEscalation rateHow often agent correctly hands off to a humanTrack separately; a correct hand-off is a win

Two anchor numbers: 32% of professionals cite output quality as the top production barrier (LangChain 2026, 1,300+ surveyed, as reported by n8n, June 5, 2026), watch Quality first. Only 21% of organizations have mature AI-governance models (Deloitte 2026, as reported by n8n, June 5, 2026), so a basic safety check already puts you ahead of most teams.

DataRobot's benchmark guidance is their own published guidance, not independent standards. Use them as a reference, not a universal threshold.

How to define “good” before you start (set a baseline)

This is the step most people skip. And it is the reason their metrics feel meaningless.

Without a baseline, your numbers float. A 78% task success rate is great or terrible depending on what a human would do on the same task. You need to know the alternative before you can judge the agent.

“Good” is relative to the alternative. How often does a human complete this task correctly, how long, and what does it cost? The agent needs to beat that. Capture the human baseline before deployment, as Workday's KPI guidance for AI agents recommends, it is the starting point for any comparison.

Set targets by stakes. High-stakes tasks (money movement, legal language, external commitments) need near-perfect success and a human gate. Low-stakes tasks (first-pass drafts with human review) can run at lower accuracy. For tasks over four hours, expect below 20% success per HCAST, set tighter gates or reconsider whether the task belongs in an agent at all.

Capturing the numbers without code (a no-code measurement loop)

  1. Read what is already there

    Make, n8n, and Zapier all log every run automatically. Make's execution history captures status, duration, and step-level data. n8n's executions list (docs.n8n.io, accessed June 2026) does the same per workflow. Zapier's Zap history logs task run statuses. Raw success/failure evidence is already in the tools you use. You are not starting from zero. Still choosing a platform? Our comparison of n8n vs Make for AI agents breaks down where each platform's run-log visibility differs.

  2. Log to a sheet

    Add a final step that appends each run outcome to a Google Sheet or Airtable: success or fail, duration, cost, input type. Now you have a trend instead of a feeling.

  3. Sample and grade weekly

    Pull a random sample of completed runs and grade them yes or no against your golden set. This is the most reliable quality signal for a small setup. LLM-as-judge (one model grading another's outputs) is the next level, but it needs calibration and is not error-free. Use it when manual sampling becomes impractical.

  4. Get into a rhythm

    Weekly: review accuracy, cost, and escalation trends, then ship one change. Monthly: compare to your human baseline. Tray.ai calls this the operating cadence. Measurement is a habit, not a one-time audit you run when something breaks.

For a tracking sheet template and golden-set structure, subscribe to the AgentsExplained newsletter below.

Do you need an eval platform? (honest answer for a small team)

Evals are essentially the new performance review system for autonomous work. And it will be even more important for agents than people given the blast radius of a good vs. bad agentic workflow.
Aaron Levie, CEO of Box, quoted by Tray.ai (June 2026)

For most non-coders: not yet.

Galileo, IBM, Google Vertex Gen AI evaluation, Weights and Biases, and Confident-AI are real enterprise tools built for high-volume teams with compliance requirements and dedicated engineers. Not sure which platform to build on yet? Our breakdown of the best no-code AI automation tools covers reliability and cost tradeoffs across the main platforms.

If you run a handful of bounded-task agents, a golden set plus a tracking sheet plus a weekly review gets most of the value at zero cost. Galileo's own data: only 15% of teams reach elite evaluation coverage. These platforms are dev-grade and under-documented for non-coders, the simple loop wins until you genuinely outgrow it.

Scale it, fix it, or kill it: turning metrics into a decision

Scale it. Task success clears your baseline AND cost per task beats manual? Add volume. Tray.ai frames this as Agent Value Multiple: business value divided by total agent cost. Above one means scale.

Fix it.Success below baseline but step-level logs show a fixable cause? Fix it. DataRobot's guidance puts the trigger at below 80% goal accuracy. Your metrics surface the problem. The guide on how to fix an agent that keeps breaking covers the repair side.

Kill it. Long or complex task, success stays unreliable after honest effort? Kill it or shrink scope. The HCAST benchmark: agents on tasks over four hours succeed less than 20% of the time, as reported by n8n (June 5, 2026). That is a structural limit, not a configuration problem. Automate the prep, keep a human on the decision.

Framing killing an agent as failure is wrong. You measured, you decided, you stopped paying for something that did not work. That is exactly what the measurement loop is for.

The cost case is real. Our analysis of 510 Trustpilot reviews (June 2026, self-selected reviewers) found Lindy users describing credits burning on failed runs. One reviewer: “Do not pay for this service unless you want to burn credits for errors with their core functionality.” Our Lindy vs Zapier breakdown covers the cost and reliability differences. An agent that costs more than it saves is a project to retire.

Frequently asked questions

How do you evaluate the performance of an AI agent? Start with task success rate. Review step-level logs to understand why individual runs fail. Set a human baseline, build a golden set, log results in a sheet. Consistency matters more than tooling.

What is a good task success rate for an AI agent?For tasks under one hour, the HCAST benchmark shows 70-80% in real-world conditions, as reported by n8n (June 5, 2026). DataRobot's benchmark guidance suggests 85%+ for a production agent. The right target depends on your baseline and the stakes of the task.

What is the difference between task-level and step-level evaluation? Task-level: did the agent reach the correct end result. Step-level: did each tool call and reasoning step go right. Task-level tells you IF it works. Step-level tells you WHY it failed.

Do you need an AI agent evaluation platform for a small setup? For most small setups: no. A golden set, a tracking sheet, and a weekly review is enough. Platforms like Galileo or W&B make sense at high volume, with compliance requirements, or when you have someone to maintain them.

How do you measure the ROI of an AI agent? Cost per task (tokens plus platform fees) versus the manual cost. If the agent costs less and quality clears your accuracy bar, ROI is positive. Include monitoring and fix time in the agent-side cost, teams routinely forget that part.

You cannot manage an agent you do not measure. Measuring honestly sometimes means the answer is “not good enough to keep.” That is not a failure, it is the right call, and one most vendors will never help you make. For the tracking sheet template, the golden-set structure, and sourced breakdowns of agent tools, subscribe to the newsletter below.

Still building? How to build an AI agent without coding is the companion guide. Not sure whether what you built is an agent or a plain automation? See the difference between an AI agent and plain automation.