Uses of Interface
org.eclipse.microprofile.metrics.Metric
-
Packages that use Metric Package Description org.eclipse.microprofile.metrics MicroProfile Metrics -
-
Uses of Metric in org.eclipse.microprofile.metrics
Subinterfaces of Metric in org.eclipse.microprofile.metrics Modifier and Type Interface Description interface
Counter
An incrementing counter metric.interface
Gauge<T extends Number>
A gauge metric is an instantaneous reading of a particular value.interface
Histogram
A metric which calculates the distribution of a value.interface
Timer
A timer metric which aggregates timing durations and provides duration statisticsMethods in org.eclipse.microprofile.metrics with type parameters of type Metric Modifier and Type Method Description <T extends Metric>
TMetricRegistry. getMetric(MetricID metricID, Class<T> asType)
<T extends Metric>
SortedMap<MetricID,T>MetricRegistry. getMetrics(Class<T> ofType, MetricFilter filter)
Returns a map of all the metrics in the registry and theirMetricID
s which match the given filter and which are assignable to the provided type.Methods in org.eclipse.microprofile.metrics that return Metric Modifier and Type Method Description Metric
MetricRegistry. getMetric(MetricID metricID)
Methods in org.eclipse.microprofile.metrics that return types with arguments of type Metric Modifier and Type Method Description Map<MetricID,Metric>
MetricRegistry. getMetrics()
Returns a map of all the metrics in the registry and theirMetricID
s at query time.SortedMap<MetricID,Metric>
MetricRegistry. getMetrics(MetricFilter filter)
Returns a map of all the metrics in the registry and theirMetricID
s which match the given filter.Methods in org.eclipse.microprofile.metrics with parameters of type Metric Modifier and Type Method Description boolean
MetricFilter. matches(MetricID metricID, Metric metric)
Returnstrue
if the metric matches the filter;false
otherwise.
-