javascript - Show request's timestamp in Fiddler? -
I got a long fiddle trace (with a complex scenario) and need to correlate the requests with application logs.
Unfortunately, while Fidler displays the requests in chronological order, it does not display the timestamp of the request. To access that information (which has been recorded), I have to right-click each row and look in the pop-up window with properties, it takes a lot of time to comb through hundreds of lines. Looking at the raw capture data is not good because each request has its own file and I need the feedler interface.
Pedantic Note: I know that there is no timestamp to show below (all the timestamps recorded below) would be OK to connect the client (or some other, unless it is the same, Eye allows to correlate the log).
Thank you.
== Time Info =========== Client Connected: 10: 32: 57: 8 9 06 Client DonorAidist: 10: 32: 57: 8 9 6 Gateway Scheduling: 0 ms dns lookup: 0 mms TCP / IP connect: 0 ms serverGujarati request: 10:32:57: 9 002 serverbuzzing response: 10: 32: 58: 2812 serverdone response: 10: 32: 58: 2884 clientbusiness response : 10: 32: 58: 2900 Client Donorspons: 10: 32: 58: 2912
Update : In current versions of Fidler, simply right-click the column header And customize columns . In the dropdown, select Session Timer and select ClientBeginRequest
in the dropdown list.
The old way to do this is to use FiddlerScript, click rule > customize the rule .
Under the class handler
, add the following script code:
public static BindUIColumn ("BeginRequestTime", 60) function BeginRequestTime (OS: session) ) {If (os. Timer! = Null) {return oS.Timers.ClientBeginRequest.ToString (); } Return string Empty; }
Then, just reload your SAZ file.
Comments
Post a Comment