For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Postman
PricingEnterprise
Contact SalesSign InSign Up for Free
HomeDocs
HomeDocs
      • Overview
      • Schemas
        • Overview
        • Run a performance test
        • View performance test metrics
          • Overview
          • Test assertion failure trends
          • Test assertions by virtual user load
        • Debug performance test errors
        • Inject data into virtual users
        • Troubleshoot performance tests
Postman API Platform

Product

  • Postman Overview
  • Enterprise
  • Spec Hub
  • Flows
  • Agent Mode
  • API Catalog
  • Fern
  • Postman CLI
  • Integrations
  • Workspaces
  • Plans and pricing

API Network

  • App Security
  • Artificial Intelligence
  • Communication
  • Data Analytics
  • Database
  • Developer Productivity
  • DevOps
  • Ecommerce
  • eSignature
  • Financial Services
  • Payments
  • Travel

Resources

  • Postman Docs
  • Academy
  • Community
  • Templates
  • Intergalactic
  • Videos
  • MCP Servers

Legal and Security

  • Legal Terms Hub
  • Terms of Service
  • Postman Product Terms
  • Security
  • Website Terms of Use

Company

  • About
  • Careers and culture
  • Contact us
  • Partner program
  • Customer stories
  • Student programs
  • Press and media
Twitter iconLinkedIn iconGithub iconYouTube iconInstagram iconDiscord icon
Download Postman
Privacy Policy

© 2026 Postman, Inc.

On this page
  • View test assertions by virtual user load
  • Debug failed test assertions
  • Identify failure patterns
Postman CollectionsTest API performanceDebug performance test assertions

View test assertions by virtual user load in performance tests

||View as Markdown|
Was this page helpful?
Previous

View test assertion failure trends in performance tests

Next

View error details for performance tests

Built with

With the Tests vs VU view, you can view how your test assertions behave as load increases. This enables you to understand whether your API remains correct under stress. By mapping test assertion results against virtual user (VU) levels, you can identify when business logic begins to degrade, which test assertions fail first, and how stability changes as the number of concurrent VUs increases.

View test assertions by virtual user load

To view test assertions by virtual user load, do the following:

  1. In the left sidebar, click Items icon Items then click a collection to view its performance test results.
  2. Click Runs, then click the Performance tab to view performance test runs for the collection.
  3. Click the performance test run you want to view.
  4. Click the Tests tab.
  5. Click the Tests vs VU tab.

The Tests vs VU view displays a heatmap of test assertions against the number of virtual users applied during the run. Each cell in the heatmap represents the outcome of a specific test assertion at a given VU level, enabling you to identify patterns of failure or degradation as load increases.

View test assertions by virtual user load during performance test

The following table explains the color coding used in the Tests vs VU heatmap:

ColorFailure rateMeaning
Green0%All checks passed, assertion is stable at this load.
Yellow1-5%Low failure rate, minor instability.
Orange6-20%Moderate failure rate, noticeable degradation under load.
Red20%+High failure rate, assertion is unstable at this load.
GrayN/ANo data, the assertion wasn’t run at this VU level.

Debug failed test assertions

Use the Tests vs VU heatmap to identify where failures occur under load, and the table below it enables you to view request-level details behind those failures.

Inspect failures in the heatmap

Hover over any cell in the heatmap to view detailed metrics for a specific test assertions at a specific VU range. This displays the test name, number of tests (passed, failed, skipped), and the failure rate.

Use this to understand how a single test assertion behaves as load increases and identify the VU range where failures begin.

View request-level details

Click any cell in the heatmap to view request-level details for the selected test assertion at that VU level. This includes the specific requests that failed (HTTP method and request name), their failure rate, and the test assertions that passed, failed, or skipped.

Analyzing these details enables you to understand how individual requests contribute to overall test assertion failures under load.

Click any folder or request in the breadcrumb path to open it in a new tab. Jump directly from a failed test assertion to the request, enabling you to investigate the issue.

Identify failure patterns

Use the heatmap to understand how your test assertions behave as the number of virtual users increases.

  • Load-sensitive failures - Find any assertions that are green (0% failure rate) at low VU levels but turn yellow, orange, or red as load increases. This pattern indicates the test assertion is sensitive to load and the related endpoint may begin to degrade as more users run at the same time.

  • Consistent failures - If an assertion is red (20%+ failure rate) across all VU ranges, it fails regardless of load. This may point to an issue with the test itself or a consistently failing endpoint, rather than a performance-related issue.

  • Intermittent issues - Assertions with a mix of green (0% failure rate) and yellow (1-5% failure rate) across VU ranges may indicate intermittent or unreliable behavior. These failures aren’t strongly tied to load and may occur unpredictably.

Postman recommends focusing on assertions that shift from green to red at relatively low VU levels. These represent the earliest failure points in your system and are the highest-priority areas to fix.