cal.setTimeInMillis(timestamp);
int minute = cal.get(Calendar.MINUTE);
Period period = new Period(minute);
try {
ThreadsInfo thread = info.getThread();
period.setThreadCount(thread.getCount());
period.setDaemonCount(thread.getDaemonCount());
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());