Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
I've added a session timer "Overall_Elapsed" column to my captured traffic.
Is there a way to filter requests by Overall_Elapsed time (or any of the session timers) that is greater than a specific value?
I needed to Customize Rules.
Added the following code to the function OnBeforeResponse in order to hide requests whose response time was less than 500ms.
if
(oSession.Timers !=
null
) {
var
starttime = oSession.Timers.ClientDoneRequest;
endtime = oSession.Timers.ServerBeginResponse;
threshold = starttime.AddMilliseconds(500);
(endtime < threshold) {
oSession[
"ui-hide"
] =
"hiding quick response"
;
}