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

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


  public MonitoringDataStorageInfo getMonitroingDataStorageInfo() {
   
    final HashMap<String,MonitoringDataStorageContentInfo> classToInfo = new HashMap<String,MonitoringDataStorageContentInfo>();
    for (MonitoringData data: read(null,null)){
      String clazz = data.getClass().getName();
      MonitoringDataStorageContentInfo info = classToInfo.get(clazz);
      if (info==null){
        info=new MonitoringDataStorageContentInfo(clazz,1l);
      } else {
        info.setCount(info.getCount()+1);
      }
      classToInfo.put(clazz, info);
    }
    long lSize = 0;
      synchronized (lock) {
View Full Code Here

TOP

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

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.