欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

fiddler显示请求时间设置方法

程序员文章站 2022-06-06 09:55:50
...

在Tool bar上面找到

Rules->CustomRules

在class Handlers{ 里面添加

function BeginRequestTime(oS: Session)
    {
        if (oS.Timers != null)
        {
            return oS.Timers.ClientBeginRequest.ToString();     
        }
        return String.Empty;
    }

    public static BindUIColumn("Time Taken")
    function CalcTimingCol(oS: Session){
        var sResult = String.Empty;
        if ((oS.Timers.ServerDoneResponse > oS.Timers.ClientDoneRequest))
        {
            sResult = (oS.Timers.ServerDoneResponse - oS.Timers.ClientDoneRequest).ToString();
        }
        return sResult;
    }

保存即可,注意退出fiddler后再保存。
如图:
fiddler显示请求时间设置方法

fiddler显示请求时间设置方法

相关标签: fiddler