Debugging local app and would like to trace all calls to the backend running on localhost:8080
. It's possible to filter on domain=localhost
; however, this also grabs a ton of noise from calls to frontend assets running on localhost:9999
. Is there any way to either include the port 8080 in the filter, or at least exclude port 9999?
domain:localhost:8080
doesn't work...
Related: it would also be helpful to filter on part of a path. For example, localhost:8080/foo/bar/baz
... if I could just filter on *bar*
or *bar/baz*
that would also do the trick.
Debugging local app and would like to trace all calls to the backend running on localhost:8080
. It's possible to filter on domain=localhost
; however, this also grabs a ton of noise from calls to frontend assets running on localhost:9999
. Is there any way to either include the port 8080 in the filter, or at least exclude port 9999?
domain:localhost:8080
doesn't work...
Related: it would also be helpful to filter on part of a path. For example, localhost:8080/foo/bar/baz
... if I could just filter on *bar*
or *bar/baz*
that would also do the trick.
-
1
Try
url:localhost:8080
or simplylocalhost:8080
. – woxxom Commented Oct 8, 2020 at 13:49 - Neither of these worksin my current chrome browser - do they in yours or were you just speculating? – Adam Hughes Commented Oct 8, 2020 at 14:02
- 1 Oh, it's a new one. Works in Chrome Canary/dev. – woxxom Commented Oct 8, 2020 at 14:10
-
1
domain:locahost
you should be able to type indomain:localhost xxxxx/yyyy
and it will filter – epascarello Commented Oct 8, 2020 at 14:11 -
1
url:http://localhost:8000
worked for me, Chrome even autoplete it. Version:89.0.4389.72 (Official Build) (64-bit)
– manus Commented Mar 4, 2021 at 16:44
1 Answer
Reset to default 15Use the url filter.
Domain filter will only filter on the hostname without the port. You'll have to use the url filter instead. For example, url:localhost:3000
.