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