Package io.helidon.microprofile.metrics
Class RegistryProducer
- java.lang.Object
-
- io.helidon.microprofile.metrics.RegistryProducer
-
@ApplicationScoped public final class RegistryProducer extends Object
Producer of each type of registry.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MetricRegistrygetApplicationRegistry()static InternalBridge.MetricRegistrygetApplicationRegistryInternal()static MetricRegistrygetBaseRegistry()static InternalBridge.MetricRegistrygetBaseRegistryInternal()static MetricRegistrygetDefaultRegistry()static InternalBridge.MetricRegistrygetDefaultRegistryInternal()static MetricRegistrygetVendorRegistry()static InternalBridge.MetricRegistrygetVendorRegistryInternal()
-
-
-
Method Detail
-
getDefaultRegistryInternal
@Produces public static InternalBridge.MetricRegistry getDefaultRegistryInternal()
-
getApplicationRegistryInternal
@Produces @RegistryType(type=APPLICATION) public static InternalBridge.MetricRegistry getApplicationRegistryInternal()
-
getBaseRegistryInternal
@Produces @RegistryType(type=BASE) public static InternalBridge.MetricRegistry getBaseRegistryInternal()
-
getVendorRegistryInternal
@Produces @RegistryType(type=VENDOR) public static InternalBridge.MetricRegistry getVendorRegistryInternal()
-
getDefaultRegistry
@Produces public static MetricRegistry getDefaultRegistry()
-
getApplicationRegistry
@Produces @RegistryType(type=APPLICATION) public static MetricRegistry getApplicationRegistry()
-
getBaseRegistry
@Produces @RegistryType(type=BASE) public static MetricRegistry getBaseRegistry()
-
getVendorRegistry
@Produces @RegistryType(type=VENDOR) public static MetricRegistry getVendorRegistry()
-
-