Package org.ngrinder.monitor.mxbean

Examples of org.ngrinder.monitor.mxbean.SystemMonitoringData


  }

  @Override
  public void run() {
    initSigar();
    SystemMonitoringData systemMonitoringData = (SystemMonitoringData) getMXBean(SYSTEM);
    systemMonitoringData.setSystemInfo(execute());
  }
View Full Code Here


   */
  public void addDefaultMXBean(MBeanServer mbeanServer) {
    Set<String> dataCollectors = MonitorContext.getInstance().getDataCollectors();

    if (dataCollectors.contains(SYSTEM)) {
      addMXBean(mbeanServer, SYSTEM, new SystemMonitoringData());
    }

    LOG.info("Default MXBean Initialized.");
  }
View Full Code Here

TOP

Related Classes of org.ngrinder.monitor.mxbean.SystemMonitoringData

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.