Package com.sun.enterprise.admin.monitor.stats

Examples of com.sun.enterprise.admin.monitor.stats.GenericStatsImpl


    private MutableCountStatistic secondsTimeouts;
 

    public PWCKeepAliveStatsImpl(String domain) {
      
        baseStatsImpl = new GenericStatsImpl(
            com.sun.enterprise.admin.monitor.stats.PWCKeepAliveStats.class,
            this);
       
        // get an instance of the MBeanServer
        ArrayList servers = MBeanServerFactory.findMBeanServer(null);
View Full Code Here


     */
    public PWCRequestStatsImpl(String domain) {

        httpListenerStats = new LinkedList();
      
        baseStatsImpl = new GenericStatsImpl(
            com.sun.enterprise.admin.monitor.stats.PWCRequestStats.class,
            this);
       
        // Initialize all the MutableStatistic Classes
        initializeStatistics();
View Full Code Here

     *
     * @param inter Interface exposed by this instance to the monitoring
     * framework
     */
    protected WebModuleStatsImpl(Class inter) {
        baseStatsImpl = new GenericStatsImpl(inter, this);

        // initialize all the MutableStatistic Classes
        initializeStatistics();
    }
View Full Code Here

        super();
        String statsInterface = "com.sun.enterprise.admin.monitor.stats.ConnectorConnectionPoolStats";
        pool_ = pool;
        initializeStatistics();
        try {
            gsImpl = new GenericStatsImpl(statsInterface, this );
        } catch( ClassNotFoundException cnfe ) {
            _logger.log( Level.INFO, "poolmon.cnfe", "GenericStatsImpl" );
        }
    }
View Full Code Here

    /** Creates a new instance of JVMCompilationStatsImpl */
    public JVMCompilationStatsImpl() {
       
        initTime = System.currentTimeMillis ();
        try {
            baseStatsImpl = new GenericStatsImpl(STATS_INTERFACE_NAME, this);
        } catch(Exception e) {
           
        }
        // get an instance of the MBeanServer
        // server = getPlatformMBeanServer();
View Full Code Here

    /** Creates a new instance of JVMThreadStatsImpl */
    public JVMThreadStatsImpl() {
        initTime = System.currentTimeMillis ();
        try {
            baseStatsImpl = new GenericStatsImpl(STATS_INTERFACE_NAME, this);
        } catch(Exception e) {
           
        }
       
        bean = ManagementFactory.getThreadMXBean();
View Full Code Here

    /** Creates a new instance of JVMClassLoadingStatsImpl */
    public JVMClassLoadingStatsImpl() {
       
        try {
            baseStatsImpl = new GenericStatsImpl(STATS_INTERFACE_NAME, this);
        } catch(Exception e) {
           
        }
        // get an instance of the MBeanServer
        // server = getPlatformMBeanServer();
View Full Code Here

   

    /** Creates a new instance of JVMThreadInfoStatsImpl */
    public JVMThreadInfoStatsImpl(ThreadInfo tInfo) {
        try {
            baseStatsImpl = new GenericStatsImpl(STATS_INTERFACE_NAME, this);
        } catch(Exception e) {
        }
        initTime = System.currentTimeMillis();
        info = tInfo;
        // initialize all the MutableStatistic Classes
View Full Code Here

    /** Creates a new instance of JVMRuntimeStatsImpl */
    public JVMRuntimeStatsImpl () {
       
        initTime = System.currentTimeMillis ();
        try {
            baseStatsImpl = new GenericStatsImpl(STATS_INTERFACE_NAME, this);
        } catch(Exception e) {
           
        }
        // get an instance of the MBeanServer
        // server = getPlatformMBeanServer();
View Full Code Here

    /** Creates a new instance of JVMMemoryStatsImpl */
    public JVMMemoryStatsImpl() {
       
        try {
            baseStatsImpl = new GenericStatsImpl(STATS_INTERFACE_NAME, this);
        } catch(Exception e) {
           
        }
        bean = ManagementFactory.getMemoryMXBean();
        heapUsage = bean.getHeapMemoryUsage();
View Full Code Here

TOP

Related Classes of com.sun.enterprise.admin.monitor.stats.GenericStatsImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.