Package com.codahale.metrics
Interface MetricFilter
-
public interface MetricFilterA filter used to determine whether or not a metric should be reported, among other things.
-
-
Field Summary
Fields Modifier and Type Field Description static MetricFilterALLMatches all metrics, regardless of type or name.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanmatches(java.lang.String name, Metric metric)Returnstrueif the metric matches the filter;falseotherwise.
-
-
-
Field Detail
-
ALL
static final MetricFilter ALL
Matches all metrics, regardless of type or name.
-
-
Method Detail
-
matches
boolean matches(java.lang.String name, Metric metric)Returnstrueif the metric matches the filter;falseotherwise.- Parameters:
name- the metric's namemetric- the metric- Returns:
trueif the metric matches the filter
-
-