Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to display the request sent time and the response received time in Fiddler?

I'm working with Fiddler Web Debugger tool version 4.4.4.8.

I've made a request to e.g. www.google.com and fiddler shows that a request is sent and the response is received.

How could I know about and display when the request was sent and when the response is received? start/end dates are not in the left columns in Fiddler.

Is there any setting?

I saw there are some Timers: http://fiddler.wikidot.com/timers

How to display/use them?

like image 290
The Light Avatar asked Dec 13 '13 07:12

The Light


People also ask

How do you see responses in Fiddler?

In Fiddler, select the Inspectors tab to see the Request and Response. Now, this tab is split horizontally; the Request Inspectors are across the top, and the Response Inspectors are across the bottom. If you don't see the tabs along the bottom, grab the blue splitter line near the bottom and drag it upward.

How do you add a time column in Fiddler?

1. You can easily add a column showing the time of the visit. Right-click the column headers, choose Customize Columns, pick the Session Timers collection and add the ClientBeginRequest value.


3 Answers

Your simplest approach would be to right-click the Web Sessions list's column headers and choose Customize Columns... from the menu.

From the Collection dropdown, choose the Session Timers option and then select the timer of interest in the Timer Name dropdown.

like image 109
EricLaw Avatar answered Sep 20 '22 05:09

EricLaw


If you just need to profile a single request, you can view the Statistics tab on the right, when clicking on a request in the requests pane like this.

Fiddler response time tab

If you need to profile multiple requests, select multiple requests from the left capture pane and you'll see the aggregate performance under statistics tab.

Fiddler aggregate response tab

like image 32
Aage Avatar answered Sep 20 '22 05:09

Aage


For Fiddler 4.6.2, Right Click on any of the Column Headers on the Sessions pane.

Customize Columns > Collection > SessionTimers > ClientBeginRequest and ClientDoneRequest

It appears like this.

enter image description here

like image 37
naveen Avatar answered Sep 21 '22 05:09

naveen