Reputation: 489
I connected my iPad by Fiddler proxy and try to monitor traffic. But my PC generate too many traffic and I lost iPad traffic in very big list. How I can setup filter: "Show only fiddler proxy traffic"?
Upvotes: 5
Views: 3463
Reputation: 509
With Fiddler Everwhere, configure a new rule like this:
Thanks to @Joakim for the inspiration for this solution.
Upvotes: 0
Reputation: 2142
Go to Rules -> Customize Rules.
Inside the OnBeforeRequest method (on the line below static function OnBeforeRequest(oSession: Session) {
), add the following:
// Only show traffic from another device, for example Android.
if (oSession.clientIP == "::ffff:127.0.0.1") {
oSession.Ignore();
}
Upvotes: 1
Reputation: 434
Change status bar value from All processes to Non-Browser. This will show you only proxy traffic.
Upvotes: 0
Reputation: 5605
What worked for me was to turn off Capture and select All Processes at the bottom left. But it happened. However, I must say, I had to play with these settings a bit and to restart Fiddler. At the beginning, the results were not always consistent, and I am wondering if there is a bug where activating/deactivating the capture or selecting a filter does not always work as expected.
Upvotes: 0
Reputation: 57075
The simplest way to hide all traffic from processes on your machine is to click the icon in the Fiddler status bar that says All Processes
and change it to Hide All
. This will hide all traffic from recognized processes on your PC, so that only the traffic coming from the IPAD will appear.
Upvotes: 2