Chrome Developer Tools Network Tab Filter by 'not' status code

Published: January 10, 2025

Tags:

Recently a co-worker reported sporadic 500-range errors on a website he was performing testing on. I was trying to gather some information on what was happening and wanted to use the “Network” tab in Chrome DevTools to show me the following requests

  1. Only requests to the domain of the specific website (e.g. filter out all 3rd party requests)
  2. All non 200 responses

Step one I knew how to do…in the filter search enter domain:example.com (replacing example.com with the actual domain for the project), however I was unsure how to complete the second step.

Through some Googling I eventually discovered that it is possible to do a negative search by pre-pending the - symbol to the field on which you are filtering.

Putting this all together, I landed on the following filter search

domain:example.com -status-code:200

Here’s a screenshot of how the looks in DevTools when visiting amazon.com.

Screenshot of filtering in DevTools network panel

Hope you find this helpful.

Max Chadwick Hi, I'm Max!

I'm a software developer who mainly works in PHP, but loves dabbling in other languages like Go and Ruby. Technical topics that interest me are monitoring, security and performance. I'm also a stickler for good documentation and clear technical writing.

During the day I lead a team of developers and solve challenging technical problems at Rightpoint where I mainly work with the Magento platform. I've also spoken at a number of events.

In my spare time I blog about tech, work on open source and participate in bug bounty programs.

If you'd like to get in contact, you can find me on Twitter and LinkedIn.