Uses of Interface
io.helidon.metrics.api.RegistryFactory
Package
Description
Provides support for Microstream-Metrics features integration.
Metrics support for Java SE, uses the Microprofile metrics APIs and formats.
Defines the Helidon metrics API so Helidon metrics-capable components can implement metrics simply and without regard for
whether metrics is actually on the runtime path or not or is enabled or not.
SPI for the metrics API.
-
Uses of RegistryFactory in io.helidon.integrations.microstream.metrics
Modifier and TypeMethodDescriptionMicrostreamMetricsSupport.Builder.registryFactory()
get the current configured RegistryFactory.Modifier and TypeMethodDescriptionMicrostreamMetricsSupport.Builder.registryFactory
(RegistryFactory registryFactory) set the RegistryFactory. -
Uses of RegistryFactory in io.helidon.metrics
Modifier and TypeMethodDescriptionRegistryFactoryProviderImpl.create
(MetricsSettings metricsSettings) Modifier and TypeMethodDescriptionMetricsSupport.Builder.registryFactory
(RegistryFactory factory) If you want to have multiple registry factories with different endpoints, you may create them usingcreate(MetricsSettings)
orcreate()
and create multipleMetricsSupport
instances with differentHelidonRestServiceSupport.Builder.webContext(String)
contexts}. -
Uses of RegistryFactory in io.helidon.metrics.api
Modifier and TypeMethodDescriptionstatic RegistryFactory
RegistryFactory.create()
Returns aRegistryFactory
according to the default metrics settings.static RegistryFactory
Deprecated.static RegistryFactory
RegistryFactory.create
(MetricsSettings metricsSettings) Returns aRegistryFactory
according to the specifiedMetricsSettings
.static RegistryFactory
RegistryFactory.getInstance()
Returns the singleton instance of theRegistryFactory
, either the initial default value or the one resulting from the most recent prior use ofgetInstance(MetricsSettings)
orgetInstance(Config)
.static RegistryFactory
RegistryFactory.getInstance
(Config config) Deprecated.UsegetInstance(MetricsSettings)
insteadstatic RegistryFactory
RegistryFactory.getInstance
(ComponentMetricsSettings componentMetricsSettings) Returns aRegistryFactory
according to theComponentMetricsSettings
provided and the underlying overall metrics settings.static RegistryFactory
RegistryFactory.getInstance
(MetricsSettings metricSettings) Returns aRegistryFactory
according to theMetricsSettings
provided and makes the instance the new value of the singleton. -
Uses of RegistryFactory in io.helidon.metrics.api.spi
Modifier and TypeMethodDescriptionRegistryFactoryProvider.create
(MetricsSettings metricsSettings) Creates a newRegistryFactory
according to the specified metrics settings.
create(MetricsSettings)
instead