Package org.eclipse.microprofile.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 orMetricID.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanmatches(MetricID metricID, Metric metric)Returnstrueif the metric matches the filter;falseotherwise.
-
-
-
Field Detail
-
ALL
static final MetricFilter ALL
Matches all metrics, regardless of type orMetricID.
-
-