Package org.eclipse.microprofile.metrics
Interface MetricFilter
-
public interface MetricFilter
A filter used to determine whether or not a metric should be reported, among other things.
-
-
Field Summary
Fields Modifier and Type Field Description static MetricFilter
ALL
Matches all metrics, regardless of type orMetricID
.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
matches(MetricID metricID, Metric metric)
Returnstrue
if the metric matches the filter;false
otherwise.
-
-
-
Field Detail
-
ALL
static final MetricFilter ALL
Matches all metrics, regardless of type orMetricID
.
-
-