Package de.scoopgmbh.copper.monitoring.core.model

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


        } 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

Related Classes of de.scoopgmbh.copper.monitoring.core.model.SystemResourcesInfo

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.