Show request's timestamp in Fiddler?

Solution 1:

Update: In current versions of Fiddler, simply right-click the column headers and choose Customize Columns. In the dropdown, choose Session Timers and choose ClientBeginRequest in the dropdown list.

The old way to do this is to use FiddlerScript. Click Rules > Customize Rules.

Inside the class Handlers, add the following script code:

public static BindUIColumn("BeginRequestTime", 60)
function BeginRequestTime(oS: Session)
{
    if (oS.Timers != null)
    {
        return oS.Timers.ClientBeginRequest.ToString();     
    }
    return String.Empty;
}

Then, simply reload your SAZ file.