Package com.dianping.cat.status.model.entity

Examples of com.dianping.cat.status.model.entity.MessageInfo


      period.setTotalStartedCount(thread.getTotalStartedCount());
      period.setCatThreadCount(thread.getCatThreadCount());
      period.setPigeonThreadCount(thread.getPigeonThreadCount());
      period.setHttpThreadCount(thread.getHttpThreadCount());

      MessageInfo catInfo = info.getMessage();

      period.setCatMessageProduced(catInfo.getProduced());
      period.setCatMessageOverflow(catInfo.getOverflowed());
      period.setCatMessageSize(catInfo.getBytes());

      MemoryInfo memeryInfo = info.getMemory();
      List<GcInfo> gcs = info.getMemory().getGcs();

      for (GcInfo gc : gcs) {
View Full Code Here


    status.setOs(new OsInfo());
    status.setDisk(new DiskInfo());
    status.setRuntime(new RuntimeInfo());
    status.setMemory(new MemoryInfo());
    status.setThread(new ThreadsInfo());
    status.setMessage(new MessageInfo());

    super.visitStatus(status);
  }
View Full Code Here

TOP

Related Classes of com.dianping.cat.status.model.entity.MessageInfo

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.