Package com.dianping.cat.consumer.metric.model.entity

Examples of com.dianping.cat.consumer.metric.model.entity.StatisticsItem


      } else {
        return;
      }
      int index = city.indexOf('-');
      if (StringUtil.isEmpty(m_city)) {
        StatisticsItem tem = m_report.findOrCreateStatistic(Monitor.CITY + key).findOrCreateStatisticsItem(
              city.substring(0, index));

        tem.setCount(tem.getCount() + total);
      } else if (!m_city.equals(city)) {
        StatisticsItem tem = m_report.findOrCreateStatistic(Monitor.CITY + key).findOrCreateStatisticsItem(
              city.substring(index + 1));

        tem.setCount(tem.getCount() + total);
      }
      if (StringUtil.isEmpty(m_channel)) {
        StatisticsItem tem = m_report.findOrCreateStatistic(Monitor.CHANNEL + key).findOrCreateStatisticsItem(
              channel);

        tem.setCount(tem.getCount() + total);
      }
    }
  }
View Full Code Here

TOP

Related Classes of com.dianping.cat.consumer.metric.model.entity.StatisticsItem

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.