Uses of Class
io.helidon.metrics.RegistryFactory
-
Packages that use RegistryFactory Package Description io.helidon.metrics Metrics support for Java SE, uses the Microprofile metrics APIs and formats. -
-
Uses of RegistryFactory in io.helidon.metrics
Methods in io.helidon.metrics that return RegistryFactory Modifier and Type Method Description static RegistryFactory
RegistryFactory. create()
Create a new factory with default configuration, with pre-filledMetricRegistry.Type.VENDOR
andMetricRegistry.Type.BASE
metrics.static RegistryFactory
RegistryFactory. create(Config config)
Create a new factory with provided configuration, with pre filledMetricRegistry.Type.VENDOR
andMetricRegistry.Type.BASE
metrics.static RegistryFactory
RegistryFactory. createSeFactory(Config config)
Deprecated.usecreate()
orcreate(io.helidon.config.Config)
instead when a new registry factory instance is needed.static RegistryFactory
RegistryFactory. getInstance()
Get a singleton instance of the registry factory.static RegistryFactory
RegistryFactory. getInstance(Config config)
Get a singleton instance of the registry factory for and update it with provided configuration.Methods in io.helidon.metrics that return types with arguments of type RegistryFactory Modifier and Type Method Description static Supplier<RegistryFactory>
RegistryFactory. getRegistryFactory()
Deprecated.useRegistryFactory::getInstance
instead.Methods in io.helidon.metrics with parameters of type RegistryFactory Modifier and Type Method Description MetricsSupport.Builder
MetricsSupport.Builder. registryFactory(RegistryFactory factory)
If you want to have mutliple registry factories with different endpoints, you may create them usingcreate(io.helidon.config.Config)
orcreate()
and create multipleMetricsSupport
instances with differentcontexts
.
-