- Display Name
Hit Network Trip Time Total (ms) [BB]
- Internal Name
E_REPORT_WS_SESSION_PAGE_NET_TRIP
- Advanced Mode only
- True
- Description
- Total hit network trip time (end of session)
- ImageSrc
- default.gif
- DisplayInPortal
- false
- Trigger
SessionEnd
JavaScript™ (Advanced Mode only)
// Hit Network Trip Time Total (ms) [BB]
function %%NameSpace%%$%%InternalName%%()
{ var netTrip = 0;
var f = $F.getFact("TL.F_E_REPORT_WS_PAGE_NET_TRIP_DG_NONE");
if (f != null) { netTrip = f.NumericValue;
} netTrip = netTrip.toFixed(4);
$F.setFact("%%NameSpace%%.%%Fact1%%", netTrip);
}