org.glassfish.web.admin.monitor.SessionStatsProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payara-micro Show documentation
Show all versions of payara-micro Show documentation
Micro Distribution of the Payara Project for IBM JDK
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 1997-2016 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [2016] [Payara Foundation]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
// Portions Copyright [2016] [Payara Foundation and/or its affiliates]
package org.glassfish.web.admin.monitor;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.glassfish.external.statistics.CountStatistic;
import org.glassfish.external.statistics.RangeStatistic;
import org.glassfish.external.statistics.impl.CountStatisticImpl;
import org.glassfish.external.statistics.impl.RangeStatisticImpl;
import org.glassfish.external.statistics.impl.StatisticImpl;
import org.glassfish.external.probe.provider.annotations.*;
import org.glassfish.gmbal.AMXMetadata;
import org.glassfish.gmbal.Description;
import org.glassfish.gmbal.ManagedAttribute;
import org.glassfish.gmbal.ManagedObject;
import org.glassfish.web.admin.LogFacade;
/**
* Provides the monitoring data at the Web container level
*
* @author Prashanth Abbagani
*/
@AMXMetadata(type="session-mon", group="monitoring")
@ManagedObject
@Description( "Web Container Session Statistics" )
public class SessionStatsProvider{
private static final Logger logger = LogFacade.getLogger();
private static final String ACTIVE_SESSIONS_DESCRIPTION =
"Number of active sessions";
private static final String TOTAL_SESSIONS_DESCRIPTION =
"Total number of sessions ever created";
private static final String EXPIRED_SESSIONS_DESCRIPTION =
"Total number of sessions ever expired";
private static final String REJECTED_SESSIONS_DESCRIPTION =
"Total number of sessions ever rejected";
private static final String PERSISTED_SESSIONS_DESCRIPTION =
"Total number of sessions ever persisted";
private static final String PASSIVATED_SESSIONS_DESCRIPTION =
"Total number of sessions ever passivated";
private static final String ACTIVATED_SESSIONS_DESCRIPTION =
"Total number of sessions ever activated";
private String moduleName;
private String vsName;
private RangeStatisticImpl activeSessionsCount;
private CountStatisticImpl sessionsTotal;
private CountStatisticImpl expiredSessionsTotal;
private CountStatisticImpl rejectedSessionsTotal;
private CountStatisticImpl persistedSessionsTotal;
private CountStatisticImpl passivatedSessionsTotal;
private CountStatisticImpl activatedSessionsTotal;
private ThreadLocal sessionIdThreadLocal;
public SessionStatsProvider(String moduleName, String vsName) {
this.moduleName = moduleName;
this.vsName = vsName;
long curTime = System.currentTimeMillis();
sessionIdThreadLocal = new ThreadLocal();
activeSessionsCount = new RangeStatisticImpl(
0L, 0L, 0L, "ActiveSessions", StatisticImpl.UNIT_COUNT,
ACTIVE_SESSIONS_DESCRIPTION, curTime, curTime);
sessionsTotal = new CountStatisticImpl("SessionsTotal",
StatisticImpl.UNIT_COUNT, TOTAL_SESSIONS_DESCRIPTION);
expiredSessionsTotal = new CountStatisticImpl(
"ExpiredSessionsTotal", StatisticImpl.UNIT_COUNT,
EXPIRED_SESSIONS_DESCRIPTION);
rejectedSessionsTotal = new CountStatisticImpl(
"RejectedSessionsTotal", StatisticImpl.UNIT_COUNT,
REJECTED_SESSIONS_DESCRIPTION);
persistedSessionsTotal = new CountStatisticImpl(
"PersistedSessionsTotal", StatisticImpl.UNIT_COUNT,
PERSISTED_SESSIONS_DESCRIPTION);
passivatedSessionsTotal = new CountStatisticImpl(
"PassivatedSessionsTotal", StatisticImpl.UNIT_COUNT,
PASSIVATED_SESSIONS_DESCRIPTION);
activatedSessionsTotal = new CountStatisticImpl(
"ActivatedSessionsTotal", StatisticImpl.UNIT_COUNT,
ACTIVATED_SESSIONS_DESCRIPTION);
}
@ManagedAttribute(id="activesessionscurrent")
@Description(ACTIVE_SESSIONS_DESCRIPTION)
public RangeStatistic getActiveSessions() {
return activeSessionsCount;
}
@ManagedAttribute(id="sessionstotal")
@Description(TOTAL_SESSIONS_DESCRIPTION)
public CountStatistic getSessionsTotal() {
return sessionsTotal;
}
@ManagedAttribute(id="rejectedsessionstotal")
@Description(REJECTED_SESSIONS_DESCRIPTION)
public CountStatistic getRejectedSessionsTotal() {
return rejectedSessionsTotal;
}
@ManagedAttribute(id="expiredsessionstotal")
@Description(EXPIRED_SESSIONS_DESCRIPTION)
public CountStatistic getExpiredSessionsTotal() {
return expiredSessionsTotal;
}
@ManagedAttribute(id="persistedsessionstotal")
@Description(PERSISTED_SESSIONS_DESCRIPTION)
public CountStatistic getPersistedSessionsTotal() {
return persistedSessionsTotal;
}
@ManagedAttribute(id="passivatedsessionstotal")
@Description(PASSIVATED_SESSIONS_DESCRIPTION)
public CountStatistic getPassivatedSessionsTotal() {
return passivatedSessionsTotal;
}
@ManagedAttribute(id="activatedsessionstotal")
@Description(ACTIVATED_SESSIONS_DESCRIPTION)
public CountStatistic getActivatedSessionsTotal() {
return activatedSessionsTotal;
}
@ProbeListener("glassfish:web:session:sessionCreatedEvent")
public void sessionCreatedEvent(
@ProbeParam("sessionId") String sessionId,
@ProbeParam("appName") String appName,
@ProbeParam("hostName") String hostName){
if (logger.isLoggable(Level.FINEST)) {
logger.finest("[TM]sessionCreatedEvent received - session = " +
sessionId + ": appname = " + appName +
": hostName = " + hostName);
}
if (isValidEvent(appName, hostName)) {
incrementActiveSessions();
sessionsTotal.increment();
sessionIdThreadLocal.set(sessionId);
}
}
@ProbeListener("glassfish:web:session:sessionDestroyedEvent")
public void sessionDestroyedEvent(
@ProbeParam("sessionId") String sessionId,
@ProbeParam("appName") String appName,
@ProbeParam("hostName") String hostName){
if (logger.isLoggable(Level.FINEST)) {
logger.finest("[TM]sessionDestroyedEvent received - session = " +
sessionId + ": appname = " + appName +
": hostName = " + hostName);
}
if (isValidEvent(appName, hostName)) {
decrementActiveSessions();
if (sessionIdThreadLocal.get() != null) {
sessionIdThreadLocal.remove();
}
}
}
@ProbeListener("glassfish:web:session:sessionRejectedEvent")
public void sessionRejectedEvent(
@ProbeParam("maxThresholdSize") int maxSessions,
@ProbeParam("appName") String appName,
@ProbeParam("hostName") String hostName){
if (logger.isLoggable(Level.FINEST)) {
logger.finest("[TM]sessionRejectedEvent received - max sessions = " +
maxSessions + ": appname = " + appName +
": hostName = " + hostName);
}
if (isValidEvent(appName, hostName)) {
rejectedSessionsTotal.increment();
}
}
@ProbeListener("glassfish:web:session:sessionExpiredEvent")
public void sessionExpiredEvent(
@ProbeParam("sessionId") String sessionId,
@ProbeParam("appName") String appName,
@ProbeParam("hostName") String hostName){
if (logger.isLoggable(Level.FINEST)) {
logger.finest("[TM]sessionExpiredEvent received - session = " +
sessionId + ": appname = " + appName +
": hostName = " + hostName);
}
if (isValidEvent(appName, hostName)) {
expiredSessionsTotal.increment();
}
}
@ProbeListener("glassfish:web:session:sessionPersistedStartEvent")
public void sessionPersistedStartEvent(
@ProbeParam("sessionId") String sessionId,
@ProbeParam("appName") String appName,
@ProbeParam("hostName") String hostName){
if (logger.isLoggable(Level.FINEST)) {
logger.finest("[TM]sessionPersistedStartEvent received - session = " +
sessionId + ": appname = " + appName +
": hostName = " + hostName);
}
}
@ProbeListener("glassfish:web:session:sessionPersistedEndEvent")
public void sessionPersistedEndEvent(
@ProbeParam("sessionId") String sessionId,
@ProbeParam("appName") String appName,
@ProbeParam("hostName") String hostName){
if (logger.isLoggable(Level.FINEST)) {
logger.finest("[TM]sessionPersistedEndEvent received - session = " +
sessionId + ": appname = " + appName +
": hostName = " + hostName);
}
if (isValidEvent(appName, hostName)) {
persistedSessionsTotal.increment();
}
}
@ProbeListener("glassfish:web:session:sessionActivatedStartEvent")
public void sessionActivatedStartEvent(
@ProbeParam("sessionId") String sessionId,
@ProbeParam("appName") String appName,
@ProbeParam("hostName") String hostName){
if (logger.isLoggable(Level.FINEST)) {
logger.finest("[TM]sessionActivatedStartEvent received - session = " +
sessionId + ": appname = " + appName +
": hostName = " + hostName);
}
}
@ProbeListener("glassfish:web:session:sessionActivatedEndEvent")
public void sessionActivatedEndEvent(
@ProbeParam("sessionId") String sessionId,
@ProbeParam("appName") String appName,
@ProbeParam("hostName") String hostName){
if (logger.isLoggable(Level.FINEST)) {
logger.finest("[TM]sessionActivatedEndEvent received - session = " +
sessionId + ": appname = " + appName +
": hostName = " + hostName);
}
if (isValidEvent(appName, hostName)) {
incrementActiveSessions();
activatedSessionsTotal.increment();
// PAYARA-486 & PAYARA-1224 Correct the incorrect incrementation - needs further looking at
if (sessionIdThreadLocal.get() != null && sessionIdThreadLocal.get().equals(sessionId)) {
decrementActiveSessions();
}
}
}
@ProbeListener("glassfish:web:session:sessionPassivatedStartEvent")
public void sessionPassivatedStartEvent(
@ProbeParam("sessionId") String sessionId,
@ProbeParam("appName") String appName,
@ProbeParam("hostName") String hostName){
if (logger.isLoggable(Level.FINEST)) {
logger.finest("[TM]sessionPassivatedStartEvent received - session = " +
sessionId + ": appname = " + appName +
": hostName = " + hostName);
}
}
@ProbeListener("glassfish:web:session:sessionPassivatedEndEvent")
public void sessionPassivatedEndEvent(
@ProbeParam("sessionId") String sessionId,
@ProbeParam("appName") String appName,
@ProbeParam("hostName") String hostName){
if (logger.isLoggable(Level.FINEST)) {
logger.finest("[TM]sessionPassivatedEndEvent received - session = " +
sessionId + ": appname = " + appName +
": hostName = " + hostName);
}
if (isValidEvent(appName, hostName)) {
decrementActiveSessions();
passivatedSessionsTotal.increment();
}
}
public String getModuleName() {
return moduleName;
}
public String getVSName() {
return vsName;
}
private void incrementActiveSessions() {
synchronized (activeSessionsCount) {
activeSessionsCount.setCurrent(
activeSessionsCount.getCurrent() + 1);
}
}
private void decrementActiveSessions() {
synchronized (activeSessionsCount) {
activeSessionsCount.setCurrent(
activeSessionsCount.getCurrent() - 1);
}
}
private boolean isValidEvent(String mName, String hostName) {
//Temp fix, get the appname from the context root
if ((moduleName == null) || (vsName == null)) {
return true;
}
if (moduleName.equals(mName) && vsName.equals(hostName))
return true;
return false;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy