* web module associated with this EEWebModuleStatsImpl.
*
* @return session size stat
*/
public AverageRangeStatistic getSessionSize() {
WebModuleStatistics stats = null;
stats = getWebModuleStatistics();
if(stats != null) {
return stats.getSessionSizeStat();
} else {
return WebModuleStatistics.createDefaultStat(WebModuleStatistics.SESSION_SIZE, "byte", "Low/High/Average Session");
//return new MutableAverageRangeStatisticImpl(new BoundedRangeStatisticImpl("session_size", "byte", 0L, 0L, 0L));
}
}