Examples of MetricInfo


Examples of org.platformlayer.metrics.model.MetricInfo

  }

  static void populateMetricInfo(MetricInfoCollection metricInfoCollection, String prefix, MetricConfig metrics) {
    if (metrics.metric != null) {
      for (Metric metric : metrics.metric) {
        MetricInfo metricInfo = new MetricInfo();
        metricInfo.key = (prefix + metric.key);
        metricInfoCollection.metricInfoList.add(metricInfo);
      }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.