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 interfaceCounterAn incrementing counter metric.interfaceGauge<T extends Number>A gauge metric is an instantaneous reading of a particular value.interfaceHistogramA metric which calculates the distribution of a value.interfaceTimerA 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 theirMetricIDs 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 MetricMetricRegistry. 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 theirMetricIDs at query time.SortedMap<MetricID,Metric>MetricRegistry. getMetrics(MetricFilter filter)Returns a map of all the metrics in the registry and theirMetricIDs which match the given filter.Methods in org.eclipse.microprofile.metrics with parameters of type Metric Modifier and Type Method Description booleanMetricFilter. matches(MetricID metricID, Metric metric)Returnstrueif the metric matches the filter;falseotherwise.
-