- Display Name
Session Size (MB) [BB]
- Internal Name
E_REPORT_WS_SESSION_MB
- Advanced Mode only
- True
- Description
- Total of all Rsp and Req sizes (end of session)
- ImageSrc
- default.gif
- DisplayInPortal
- false
- Trigger
SessionEnd
JavaScript™ (Advanced Mode only)
// Session Size (MB) [BB]
function %%NameSpace%%$%%InternalName%%()
{ var totalSize = (($S.TotalREQBytes + $S.TotalRSPBytes)/1048576);
totalSize = totalSize.toFixed(4);
$F.setFact("%%NameSpace%%.%%Fact1%%", totalSize);
}