- Display Name
Hit Network Trip Time Running Max (ms) [BB]
- Internal Name
E_REPORT_WS_PAGE_NET_TRIP_MAX
- Advanced Mode only
- True
- Description
- Running maximum hit network trip time
- ImageSrc
- default.gif
- DisplayInPortal
- false
- Trigger
PageEnd
JavaScript™ (Advanced Mode only)
// Hit Network Trip Time Running Max (ms) [BB]
function %%NameSpace%%$%%InternalName%%()
{ var netTrip = $H.NetworkTrip/1000;
var f = $F.getFact("%%NameSpace%%.%%Fact1%%");
if (f != null) { if (netTrip < f.NumericValue) netTrip = f.NumericValue;
} $F.setFact("%%NameSpace%%.%%Fact1%%", netTrip.toFixed(4));
}