Package com.codahale.metrics

Examples of com.codahale.metrics.MetricFilter.matches()


    Collection<Map.Entry<String, Metric>> entries = metrics.entrySet();
    for(Map.Entry<String, Metric> entry : entries){
      String name = entry.getKey();
      Metric metric = entry.getValue();

      if(!filter.matches(name, metric)){
        continue;
      }

      // Strip prefix
      name = name.substring(prefix.length());
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.