/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.portal.monitoring.internal.statistics.portal; import com.liferay.portal.kernel.model.Company; import com.liferay.portal.kernel.model.CompanyConstants; import com.liferay.portal.kernel.monitoring.DataSampleProcessor; import com.liferay.portal.kernel.monitoring.RequestStatus; import com.liferay.portal.kernel.service.CompanyLocalService; import com.liferay.portal.monitoring.internal.statistics.RequestStatistics; /** * @author Rajesh Thiagarajan * @author Michael C. Han * @author Brian Wing Shun Chan */ public class CompanyStatistics implements DataSampleProcessor<PortalRequestDataSample> { public CompanyStatistics() { _companyId = CompanyConstants.SYSTEM; _webId = CompanyConstants.SYSTEM_STRING; _requestStatistics = new RequestStatistics(_webId); } public CompanyStatistics( CompanyLocalService companyLocalService, String webId) { try { Company company = companyLocalService.getCompanyByWebId(webId); _companyId = company.getCompanyId(); _webId = webId; _requestStatistics = new RequestStatistics(_webId); } catch (Exception e) { throw new IllegalStateException( "Unable to get company with web id " + webId, e); } } public long getCompanyId() { return _companyId; } public long getMaxTime() { return _maxTime; } public long getMinTime() { return _minTime; } public RequestStatistics getRequestStatistics() { return _requestStatistics; } public long getStartTime() { return _START_TIME; } public long getUptime() { return System.currentTimeMillis() - _START_TIME; } public String getWebId() { return _webId; } @Override public void processDataSample( PortalRequestDataSample portalRequestDataSample) { if (portalRequestDataSample.getCompanyId() != _companyId) { return; } RequestStatus requestStatus = portalRequestDataSample.getRequestStatus(); if (requestStatus.equals(RequestStatus.ERROR)) { _requestStatistics.incrementError(); } else if (requestStatus.equals(RequestStatus.SUCCESS)) { _requestStatistics.incrementSuccessDuration( portalRequestDataSample.getDuration()); } else if (requestStatus.equals(RequestStatus.TIMEOUT)) { _requestStatistics.incrementTimeout(); } long duration = portalRequestDataSample.getDuration(); if (_maxTime < duration) { _maxTime = duration; } else if (_minTime > duration) { _minTime = duration; } } public void reset() { _maxTime = 0; _minTime = 0; _requestStatistics.reset(); } private static final long _START_TIME = System.currentTimeMillis(); private final long _companyId; private long _maxTime; private long _minTime; private final RequestStatistics _requestStatistics; private final String _webId; }