Package | Description |
---|---|
org.eclipse.microprofile.metrics |
MicroProfile Metrics
|
Modifier and Type | Field and Description |
---|---|
static MetricFilter |
MetricFilter.ALL
Matches all metrics, regardless of type or
MetricID . |
Modifier and Type | Method and Description |
---|---|
SortedMap<MetricID,ConcurrentGauge> |
MetricRegistry.getConcurrentGauges(MetricFilter filter)
Returns a map of all the concurrent gauges in the registry and their
MetricID s which match
the given filter. |
SortedMap<MetricID,Counter> |
MetricRegistry.getCounters(MetricFilter filter)
Returns a map of all the counters in the registry and their
MetricID s which match the given
filter. |
SortedMap<MetricID,Gauge> |
MetricRegistry.getGauges(MetricFilter filter)
Returns a map of all the gauges in the registry and their
MetricID s which match the given filter. |
SortedMap<MetricID,Histogram> |
MetricRegistry.getHistograms(MetricFilter filter)
Returns a map of all the histograms in the registry and their
MetricID s which match the given
filter. |
SortedMap<MetricID,Meter> |
MetricRegistry.getMeters(MetricFilter filter)
Returns a map of all the meters in the registry and their
MetricID s which match the given filter. |
<T extends Metric> |
MetricRegistry.getMetrics(Class<T> ofType,
MetricFilter filter)
Returns a map of all the metrics in the registry and their
MetricID s which match the given filter
and which are assignable to the provided type. |
SortedMap<MetricID,Metric> |
MetricRegistry.getMetrics(MetricFilter filter)
Returns a map of all the metrics in the registry and their
MetricID s which match the given filter. |
SortedMap<MetricID,SimpleTimer> |
MetricRegistry.getSimpleTimers(MetricFilter filter)
Returns a map of all the simple timers in the registry and their
MetricID s which match the given filter. |
SortedMap<MetricID,Timer> |
MetricRegistry.getTimers(MetricFilter filter)
Returns a map of all the timers in the registry and their
MetricID s which match the given filter. |
void |
MetricRegistry.removeMatching(MetricFilter filter)
Removes all metrics which match the given filter.
|
Copyright © 2017 – 2020 Eclipse Foundation. All rights reserved.
Use is subject to license terms.