Package | Description |
---|---|
org.eclipse.microprofile.metrics |
MicroProfile Metrics
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultMetadata
The default implementation of
Metadata |
Modifier and Type | Method and Description |
---|---|
Metadata |
MetadataBuilder.build() |
Modifier and Type | Method and Description |
---|---|
abstract Map<String,Metadata> |
MetricRegistry.getMetadata()
Returns a map of all the metadata in the registry and their names.
|
Modifier and Type | Method and Description |
---|---|
static MetadataBuilder |
Metadata.builder(Metadata metadata)
Returns a new builder with the
Metadata information |
abstract 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. |
abstract 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. |
abstract Counter |
MetricRegistry.counter(Metadata metadata)
|
abstract Counter |
MetricRegistry.counter(Metadata metadata,
Tag... tags)
|
abstract Histogram |
MetricRegistry.histogram(Metadata metadata)
|
abstract Histogram |
MetricRegistry.histogram(Metadata metadata,
Tag... tags)
|
abstract Meter |
MetricRegistry.meter(Metadata metadata)
|
abstract Meter |
MetricRegistry.meter(Metadata metadata,
Tag... tags)
|
abstract <T extends Metric> |
MetricRegistry.register(Metadata metadata,
T metric)
|
abstract <T extends Metric> |
MetricRegistry.register(Metadata metadata,
T metric,
Tag... tags)
|
abstract SimpleTimer |
MetricRegistry.simpleTimer(Metadata metadata)
Return the
SimpleTimer registered under the the MetricID with the Metadata 's name and
with no tags; or create and register a new SimpleTimer if none is registered. |
abstract SimpleTimer |
MetricRegistry.simpleTimer(Metadata metadata,
Tag... tags)
Return the
SimpleTimer registered under the the MetricID with the Metadata 's name and
with the provided Tag s; or create and register a new SimpleTimer if none is registered. |
abstract Timer |
MetricRegistry.timer(Metadata metadata)
|
abstract Timer |
MetricRegistry.timer(Metadata metadata,
Tag... tags)
|
Copyright © 2021. All rights reserved.