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.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
AI Coding
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
UI/UX Tools
CMS
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"
;
}