webappBWStatistic.getIncomingBandwidth());
dataContext.addDataLong(ThrottlingDataEntryConstants.WEBAPP_OUTGOING_BANDWIDTH,
webappBWStatistic.getOutgoingBandwidth());
//Assigning service requests and response
RequestStatistics requestStat = usage.getTotalRequestStatistics();
dataContext.addDataLong(ThrottlingDataEntryConstants.SERVICE_REQUEST_COUNT,
requestStat.getRequestCount());
dataContext.addDataLong(ThrottlingDataEntryConstants.SERVICE_RESPONSE_COUNT,
requestStat.getResponseCount());
//Get number of users
int usersCount = usage.getNumberOfUsers();
dataContext.addDataInt(ThrottlingDataEntryConstants.USERS_COUNT, usersCount);