Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Telerik
Build great .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
Testing & Mocking
Debugging
Build JavaScript UI
Javascript
AI for Developers & IT
Ensure AI program success
AI Coding
Additional Tools
Enhance the developer and designer experience
UI/UX Tools
Free Tools
CMS
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"
;
}