Package com.sun.enterprise.server.stats

Examples of com.sun.enterprise.server.stats.JVMStatsImpl


    final StatsHolder jvmNode = rootStatsHolder.addChild(MonitoredObjectType.JVM.getTypeName(), MonitoredObjectType.JVM);
    assert (jvmNode != null) : "Initialization Error in jvmNodeCreation";
    jvmNode.setObjectName(MonitoringObjectNames.getJvmObjectName());
    jvmNode.setDottedName(DottedNameFactory.getJVMDottedName());
    try {
      this.registerJVMStats(new JVMStatsImpl(), null);
    }
    catch (Exception cause) {
      throw new RuntimeException(cause);
    }
       
View Full Code Here

TOP

Related Classes of com.sun.enterprise.server.stats.JVMStatsImpl

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.