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
        • Set up a monitor
        • View monitor results
        • Manage monitors
        • Run monitors using static IPs
        • Troubleshoot monitors
        • Monitoring FAQ
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 failed monitors
  • Debug local run attempts
  • Debug variable issues
  • Log relevant information
  • Uncaught errors
Postman CollectionsMonitor collections

Troubleshoot monitors in Postman

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

Configure Postman Monitors to run from static IPs

Next

Postman Monitors frequently asked questions

Built with

If you encounter a problem with a monitor, the following troubleshooting steps may help you identify and resolve the issue.

View failed monitors

The Console Log can help you debug issues you might encounter with your monitors.

  1. Go to your workspace and click the Services icon Services tab and expand Monitors in the sidebar.
  2. Select a monitor, and then click a failed monitor run in the performance graph.
  3. Click Console Log to view monitor run details, along with any console.log() statements you included in your pre-request and post-response scripts.
  4. (Optional) Click Search console logs and enter a search term like “error” or “failed”. Matches are highlighted in the log. You can also click Down Large icon Next match and Up Large icon Previous match to cycle through them.

Failed monitor run Console log

For more information on debugging with the Postman Console, see Troubleshooting API requests.

Debug local run attempts

  • Run the failing monitor’s collection with its environment in Postman or the Postman CLI.
  • If a local run passes, check that your changes are automatically syncing to Postman Cloud.

Debug variable issues

  • Ensure that the same environment is used across local runs and monitor runs. To confirm, add console.log(environment); to your request scripts and compare the results across monitoring and local runs.
  • Ensure that any collection or environment variables that your collection run depends on have been shared. Because they run in the Postman cloud, monitors can only use variables whose values have been shared. (Sharing syncs variable values to the Postman cloud.)
  • If your collection run depends on a saved global variable, change it to an environment variable, and share its value. Saved global variables aren’t supported in monitors.

Log relevant information

  • Unexpected response bodies or header values can be a source of monitor issues. You can log these with the following code:

    1console.log(JSON.stringify(responseBody, null, 2));
    2console.log(JSON.stringify(responseHeaders, null, 2));

Uncaught errors

  • Wrap suspicious code in a try - catch block to ensure test and pre-request scripts in your collection run to completion.