Uses of Interface
io.helidon.common.metrics.InternalBridge.Metadata
-
Packages that use InternalBridge.Metadata Package Description io.helidon.common.metrics A collection of version-neutral interfaces (and some implementations where they apply to all versions) of constructs used in MicroProfile Metrics. -
-
Uses of InternalBridge.Metadata in io.helidon.common.metrics
Methods in io.helidon.common.metrics that return InternalBridge.Metadata Modifier and Type Method Description InternalBridge.MetadataInternalBridge.Metadata.MetadataBuilder. build()Creates aInternalBridge.Metadatainstance using the values set by invocations of the variouswithXXXmethods.static InternalBridge.MetadataInternalBridge.Metadata. newMetadata(String name, String displayName, String description, MetricType type, String unit)Prepares a version-neutralInternalBridge.Metadatainstance using the specified values, avoiding the need to create and act on a builder.static InternalBridge.MetadataInternalBridge.Metadata. newMetadata(String name, String displayName, String description, MetricType type, String unit, boolean isReusable, Map<String,String> tags)Prepares a version-neutralInternalBridge.Metadatainstance using the specified values, avoiding the need to create and act on a builder.static InternalBridge.MetadataInternalBridge.Metadata. newMetadata(String name, String displayName, String description, MetricType type, String unit, Map<String,String> tags)Prepares a version-neutralInternalBridge.Metadatainstance using the specified values, avoiding the need to create and act on a builder.Methods in io.helidon.common.metrics with parameters of type InternalBridge.Metadata Modifier and Type Method Description CounterInternalBridge.MetricRegistry. counter(InternalBridge.Metadata metadata)Finds or creates a newCounterusing the specified version-neutralMetadata.CounterInternalBridge.MetricRegistry. counter(InternalBridge.Metadata metadata, Map<String,String> tags)Finds or creates a new Counter using the specified version-neutralMetadataand version-neutralTags.HistogramInternalBridge.MetricRegistry. histogram(InternalBridge.Metadata metadata)Finds or creates a newHistogramusing the specified version-neutralMetadata.HistogramInternalBridge.MetricRegistry. histogram(InternalBridge.Metadata metadata, Map<String,String> tags)Finds or creates a newHistogramusing the specified version-neutralMetadataand version-neutralTags.MeterInternalBridge.MetricRegistry. meter(InternalBridge.Metadata metadata)Finds or creates a newMeterusing the specified version-neutralMetadata.MeterInternalBridge.MetricRegistry. meter(InternalBridge.Metadata metadata, Map<String,String> tags)Finds or creates a newMeterusing the specified version-neutralMetadataand version-neutralTags.<T extends Metric>
TInternalBridge.MetricRegistry. register(InternalBridge.Metadata metadata, T metric)Registers a new metric using the specified version-neutralInternalBridge.Metadataand the typed metric itself.TimerInternalBridge.MetricRegistry. timer(InternalBridge.Metadata metadata)Finds or creates a newTimerusing the specified version-neutralMetadata.TimerInternalBridge.MetricRegistry. timer(InternalBridge.Metadata metadata, Map<String,String> tags)Finds or creates a newTimerusing the specified version-neutralMetadataand version-neutralTags.
-