Uses of Interface
io.helidon.metrics.api.MetricsSettings
-
Packages that use MetricsSettings Package Description 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.io.helidon.metrics.serviceapi API and minimal implementation for metrics support service.io.helidon.metrics.serviceapi.spi Service provider interfaces for locating implementations of the metrics support service. -
-
Uses of MetricsSettings in io.helidon.metrics
Methods in io.helidon.metrics with parameters of type MetricsSettings Modifier and Type Method Description static MetricsSupport
MetricsSupport. create(MetricsSettings metricsSettings, RestServiceSettings restServiceSettings)
Create an instance to be registered with Web Server with the specific metrics settings.MetricsSupport
MetricsSupportProviderImpl. create(MetricsSettings metricsSettings, RestServiceSettings restServiceSettings)
RegistryFactory
RegistryFactoryProviderImpl. create(MetricsSettings metricsSettings)
void
RegistryFactory. update(MetricsSettings metricsSettings)
Constructors in io.helidon.metrics with parameters of type MetricsSettings Constructor Description MetricsSupport(MetricsSettings metricsSettings, RestServiceSettings restServiceSettings)
RegistryFactory(MetricsSettings metricsSettings, Registry appRegistry, Registry vendorRegistry)
-
Uses of MetricsSettings in io.helidon.metrics.api
Methods in io.helidon.metrics.api that return MetricsSettings Modifier and Type Method Description MetricsSettings
MetricsSettings.Builder. build()
Constructs aMetricsSettings
object from the builder.static MetricsSettings
MetricsSettings. create()
Returns default metrics settings based on default config.static MetricsSettings
MetricsSettings. create(Config config)
Returns metrics settings based on aConfig
node, by convention themetrics
config section within the overallmetrics
config.Methods in io.helidon.metrics.api with parameters of type MetricsSettings Modifier and Type Method Description static MetricsSettings.Builder
MetricsSettings. builder(MetricsSettings metricsSettings)
Creates a builder based on the values in an existingMetricsSettings
instance.static RegistryFactory
RegistryFactory. create(MetricsSettings metricsSettings)
Returns aRegistryFactory
according to the specifiedMetricsSettings
.static RegistryFactory
RegistryFactory. getInstance(MetricsSettings metricSettings)
Returns aRegistryFactory
according to theMetricsSettings
provided and makes the instance the new value of the singleton.default void
RegistryFactory. update(MetricsSettings metricsSettings)
Updates the metrics settings for theRegistryFactory
. -
Uses of MetricsSettings in io.helidon.metrics.api.spi
Methods in io.helidon.metrics.api.spi with parameters of type MetricsSettings Modifier and Type Method Description RegistryFactory
RegistryFactoryProvider. create(MetricsSettings metricsSettings)
Creates a newRegistryFactory
according to the specified metrics settings. -
Uses of MetricsSettings in io.helidon.metrics.serviceapi
Methods in io.helidon.metrics.serviceapi with parameters of type MetricsSettings Modifier and Type Method Description static MetricsSupport
MetricsSupport. create(MetricsSettings metricsSettings)
Creates a newMetricsSupport
instance using the specified metrics settings and defaulted REST service settings.static MetricsSupport
MetricsSupport. create(MetricsSettings metricsSettings, RestServiceSettings restServiceSettings)
Creates a newMetricsSupport
instance using the specified metrics settings and REST service settings. -
Uses of MetricsSettings in io.helidon.metrics.serviceapi.spi
Methods in io.helidon.metrics.serviceapi.spi with parameters of type MetricsSettings Modifier and Type Method Description T
MetricsSupportProvider. create(MetricsSettings metricsSettings, RestServiceSettings restServiceSettings)
Create a new instance of the specific type ofMetricsSupport
.
-