Uses of Interface
io.helidon.metrics.api.RegistryFactory
-
Packages that use RegistryFactory Package Description io.helidon.integrations.microstream.metrics Provides support for Microstream-Metrics features integration.io.helidon.metrics Metrics support for Java SE, uses the Microprofile metrics APIs and formats.io.helidon.metrics.api 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.io.helidon.metrics.api.spi SPI for the metrics API. -
-
Uses of RegistryFactory in io.helidon.integrations.microstream.metrics
Methods in io.helidon.integrations.microstream.metrics that return RegistryFactory Modifier and Type Method Description RegistryFactory
MicrostreamMetricsSupport.Builder. registryFactory()
get the current configured RegistryFactory.Methods in io.helidon.integrations.microstream.metrics with parameters of type RegistryFactory Modifier and Type Method Description MicrostreamMetricsSupport.Builder
MicrostreamMetricsSupport.Builder. registryFactory(RegistryFactory registryFactory)
set the RegistryFactory. -
Uses of RegistryFactory in io.helidon.metrics
Classes in io.helidon.metrics that implement RegistryFactory Modifier and Type Class Description class
RegistryFactory
Access point to all registries.Methods in io.helidon.metrics that return RegistryFactory Modifier and Type Method Description RegistryFactory
RegistryFactoryProviderImpl. create(MetricsSettings metricsSettings)
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 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
Methods in io.helidon.metrics.api that return RegistryFactory Modifier and Type Method Description static RegistryFactory
RegistryFactory. create()
Returns aRegistryFactory
according to the default metrics settings.static RegistryFactory
RegistryFactory. create(Config config)
Deprecated.Usecreate(MetricsSettings)
insteadstatic 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
Methods in io.helidon.metrics.api.spi that return RegistryFactory Modifier and Type Method Description RegistryFactory
RegistryFactoryProvider. create(MetricsSettings metricsSettings)
Creates a newRegistryFactory
according to the specified metrics settings.
-