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