Package | Description |
---|---|
org.eclipse.microprofile.metrics |
MicroProfile Metrics
|
Modifier and Type | Method and Description |
---|---|
ConcurrentGauge |
MetricRegistry.concurrentGauge(Metadata metadata)
Return the
ConcurrentGauge registered under the MetricID with the Metadata 's name;
or create and register a new ConcurrentGauge if none is registered. |
ConcurrentGauge |
MetricRegistry.concurrentGauge(Metadata metadata,
Tag... tags)
Return the
ConcurrentGauge registered under the MetricID with the Metadata 's name and
with the provided Tag s; or create and register a new ConcurrentGauge if none is registered. |
ConcurrentGauge |
MetricRegistry.concurrentGauge(MetricID metricID)
Return the
ConcurrentGauge registered under the MetricID ; or create and register
a new ConcurrentGauge if none is registered. |
ConcurrentGauge |
MetricRegistry.concurrentGauge(String name)
Return the
ConcurrentGauge registered under the MetricID with this name; or create and register
a new ConcurrentGauge if none is registered. |
ConcurrentGauge |
MetricRegistry.concurrentGauge(String name,
Tag... tags)
Return the
ConcurrentGauge registered under the MetricID with this name and
with the provided Tag s; or create and register a new ConcurrentGauge if none is registered. |
ConcurrentGauge |
MetricRegistry.getConcurrentGauge(MetricID metricID)
Return the
ConcurrentGauge registered for the provided MetricID . |
Modifier and Type | Method and Description |
---|---|
SortedMap<MetricID,ConcurrentGauge> |
MetricRegistry.getConcurrentGauges()
Returns a map of all the concurrent gauges in the registry and their
MetricID s. |
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. |
Copyright © 2017 – 2022 Eclipse Foundation. All rights reserved.
Use is subject to license terms.