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