Examples of SystemResourcesInfo


Examples of de.scoopgmbh.copper.monitoring.core.model.SystemResourcesInfo

    }
    int size = group.size();
    if (size==0){
      size=1;
    }
    return new SystemResourcesInfo(usedGroup.getFrom(),
        systemCpuLoadAvg/size,
        freePhysicalMemorySizeAvg/size,
        processCpuLoadAvg/size,
        heapMemoryUsageAvg/size,
        liveThreadsCountAvg/size,
View Full Code Here

Examples of de.scoopgmbh.copper.monitoring.core.model.SystemResourcesInfo

        } catch (Exception e) {
          //workaround to support legacy java versions the
          //Exception means no support
        }
      }
      return new SystemResourcesInfo(new Date(),
          boundValue(systemCpuLoad),
          freePhysicalMemorySize,
          boundValue(processCpuLoad),
          memoryMXBean.getHeapMemoryUsage().getUsed(),
          threadMXBean.getThreadCount(),
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.