Package com.dianping.cat.report.page.problem.ProblemStatistics

Examples of com.dianping.cat.report.page.problem.ProblemStatistics.StatusStatistics


    } else if (!StringUtils.isEmpty(name) && !StringUtils.isEmpty(type)) {
      Map<String, TypeStatistics> status = problemStatistics.getStatus();
      TypeStatistics value = status.get(type);

      if (value != null) {
        StatusStatistics nameValue = value.getStatus().get(name);
        if (nameValue != null) {
          data.put(COUNT, String.valueOf(nameValue.getCount()));
        }
      }
    }
  }
View Full Code Here

TOP

Related Classes of com.dianping.cat.report.page.problem.ProblemStatistics.StatusStatistics

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.