Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2009-2017 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 [year] [name of copyright owner]"
*
* 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]
package com.sun.ejb.monitoring.stats;
import java.util.logging.Level;
import java.util.logging.Logger;
import com.sun.ejb.containers.EjbContainerUtilImpl;
import org.glassfish.external.probe.provider.StatsProviderManager;
import org.glassfish.external.probe.provider.annotations.*;
import org.glassfish.external.statistics.*;
import org.glassfish.external.statistics.impl.*;
import org.glassfish.gmbal.*;
/**
* Probe listener for the Ejb Cache monitoring events.
*
* @author Marina Vatkina
*/
// TODO: find the right names
// v2: com.sun.appserv:application=__ejb_container_timer_app,name=bean-cache,type=bean-cache,category=monitor,ejb-module=ejb_jar,entity-bean=TimerBean,server=server
// v3: amx:pp=/mon/server-mon[server],type=bean-cache-mon,name=??????????
@AMXMetadata(type="bean-cache-mon", group="monitoring", isSingleton=false)
@ManagedObject
@Description("Bean Cache Statistics")
public class EjbCacheStatsProvider {
private CountStatisticImpl expiredSessionsRemovedStat = new CountStatisticImpl(
"NumExpiredSessionsRemoved", "count",
"Provides a count value reflecting the number of expired sessions "
+ "that were removed from the bean cache.");
private CountStatisticImpl passivations = new CountStatisticImpl(
"NumPassivations", "count",
"Provides a count value reflecting the number of passivations for a "
+ "StatefulSessionBean from the bean cache.");
private CountStatisticImpl passivationErrors = new CountStatisticImpl(
"NumPassivationErrors", "count",
"Provides a count value reflecting the number of errors that occured "
+ "while passivating a StatefulSessionBean from the bean cache.");
private CountStatisticImpl passivationSuccess = new CountStatisticImpl(
"NumPassivationSuccess", "count",
"Provides a count value reflecting the number of passivations for a "
+ "StatefulSessionBean from the bean cache that succeeded");
private BoundedRangeStatisticImpl cacheHits;
private BoundedRangeStatisticImpl cacheMisses;
private BoundedRangeStatisticImpl numBeans;
private static final Logger _logger = EjbContainerUtilImpl.getLogger();
private long beanId;
private String appName = null;
private String moduleName = null;
private String beanName = null;
private boolean registered = false;
private EjbCacheStatsProviderDelegate delegate;
public EjbCacheStatsProvider(EjbCacheStatsProviderDelegate delegate, long beanId,
String appName, String moduleName, String beanName) {
this.delegate = delegate;
this.beanId = beanId;
this.appName = appName;
this.moduleName = moduleName;
this.beanName = beanName;
long now = System.currentTimeMillis();
numBeans = new BoundedRangeStatisticImpl(
0, 0, 0, delegate.getMaxCacheSize(), 0, "NumBeansInCache", "count",
"Provides total number of EJBs in the associated EJB Cache.",
now, now);
cacheHits = new BoundedRangeStatisticImpl(
0, 0, 0, Long.MAX_VALUE, 0, "CacheHits", "count",
"Provides the number of times a user request hits an EJB in associated EJB cache instance",
now, now);
cacheMisses = new BoundedRangeStatisticImpl(
0, 0, 0, Long.MAX_VALUE, 0, "CacheMisses", "count",
"Provides the number of times a user request fails to find an EJB in associated EJB cache instance",
now, now);
}
public void register() {
String invokerId = EjbMonitoringUtils.getInvokerId(appName, moduleName, beanName);
String node = EjbMonitoringUtils.registerSubComponent(
appName, moduleName, beanName, "bean-cache", this, invokerId);
if (node != null) {
registered = true;
}
}
public void unregister() {
if (registered) {
registered = false;
StatsProviderManager.unregister(this);
}
}
@ManagedAttribute(id="cachemisses")
@Description( "Number of times a user request fails to find an EJB in associated EJB cache instance")
public RangeStatistic getCacheMisses() {
cacheMisses.setCurrent(delegate.getCacheMisses());
return cacheMisses;
}
@ManagedAttribute(id="cachehits")
@Description( "Number of times a user request hits an EJB in associated EJB cache instance")
public RangeStatistic getCacheHits() {
cacheHits.setCurrent(delegate.getCacheHits());
return cacheHits;
}
@ManagedAttribute(id="numbeansincache")
@Description( "Number of EJBs in the associated EJB Cache")
public RangeStatistic getNumBeansInCache() {
numBeans.setCurrent(delegate.getNumBeansInCache());
return numBeans;
}
@ManagedAttribute(id="numexpiredsessionsremoved")
@Description( "Number of expired sessions removed by the cleanup thread.")
public CountStatistic getNumExpiredSessionsRemoved() {
return expiredSessionsRemovedStat;
}
@ManagedAttribute(id="numpassivations")
@Description( "Number of passivated beans")
public CountStatistic getNumPassivations() {
return passivations;
}
@ManagedAttribute(id="numpassivationerrors")
@Description( "Number of errors during passivation.")
public CountStatistic getNumPassivationErrors() {
return passivationErrors;
}
@ManagedAttribute(id="numpassivationsuccess")
@Description( "Number of times passivation completed successfully.")
public CountStatistic getNumPassivationSuccess() {
return passivationSuccess;
}
@ProbeListener("glassfish:ejb:cache:beanPassivatedEvent")
public void ejbBeanPassivatedEvent(
@ProbeParam("beanId") long beanId,
@ProbeParam("appName") String appName,
@ProbeParam("modName") String modName,
@ProbeParam("ejbName") String ejbName,
@ProbeParam("success") boolean success) {
if (this.beanId == beanId) {
passivations.increment();
if (success) {
passivationSuccess.increment();
} else {
passivationErrors.increment();
}
}
}
@ProbeListener("glassfish:ejb:cache:expiredSessionsRemovedEvent")
public void ejbExpiredSessionsRemovedEvent(
@ProbeParam("beanId") long beanId,
@ProbeParam("appName") String appName,
@ProbeParam("modName") String modName,
@ProbeParam("ejbName") String ejbName,
@ProbeParam("num") long num) {
if (this.beanId == beanId) {
expiredSessionsRemovedStat.increment(num);
}
}
}