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

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


      Map<String, double[]> currentValues = m_pruductDataFetcher.buildGraphData(report);

      mergeMap(sourceValue, currentValues, totalSize, index);
      index++;

      Statistic ipList = report.getStatistics().get(SystemReportConvertor.IP_LIST_KEY);

      if (ipList != null) {
        ipAddrs.addAll(ipList.getStatisticsItems().keySet());
      }
    }
    return sourceValue;
  }
View Full Code Here


    List<PieChart> charts = new ArrayList<PieChart>();

    for (Entry<String, Statistic> entry : statics.entrySet()) {
      PieChart chart = new PieChart().setMaxSize(Integer.MAX_VALUE);
      List<Item> items = new ArrayList<Item>();
      Statistic values = entry.getValue();
      Map<String, StatisticsItem> statisticsItems = values.getStatisticsItems();

      for (StatisticsItem tmp : statisticsItems.values()) {
        Item item = new Item();

        item.setNumber(tmp.getCount());
View Full Code Here

TOP

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

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.