I’m using the MVC Mini Profiler and Google Analytics in my application.
These are generating calls to the server that lower the signal-to-noise ratio of requests in the log, is it possible to ignore/filter certain requests from the Chrome Dev Tools Network tab so I can focus on the other Ajax requests my app is making?
The filters at the bottom (All | Documents | Stylesheets | Images | Scripts | XHR | Fonts | WebSockets | Other) let you filter by request type. You can even do multi-select by using Ctrl key. If you know what request type you want to ignore, you can select all the other request types.
Note that you may need to click the “Filter” icon (it looks like a funnel) before the filter options will appear.
In case you don’t want to filter a particular type of resource, you can use Ctrl+F to search by URL. You can also use the “Filter” box to filter by URL.
(Note that this does an inclusion filter. There is no way to specify an exclusion filter.)You can use inclusion and exclusion filters in a space seperated list e.g.
logoas below for only requests containing “logo”. Filtering-results -negotiatewill filter out MVC mini-profiler results and other requests with “negotiate” in the URL.The “Filter” icon, URL filter and request type filters are marked in the image below.