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"
;
}