Class GlobalMetricsConfigurationBuilder
java.lang.Object
org.infinispan.configuration.global.GlobalMetricsConfigurationBuilder
- All Implemented Interfaces:
Builder<GlobalMetricsConfiguration>,GlobalConfigurationChildBuilder
public class GlobalMetricsConfigurationBuilder
extends Object
implements Builder<GlobalMetricsConfiguration>
Configures the types of metrics gathered and exported via microprofile metrics for all caches owned by this cache
manager. Gauges do not have any performance penalty so are enabled by default. Histograms are more expensive to
compute so should be enabled manually when needed. Enabling metrics in config has no effect unless the necessary
microprofile metrics API and provider (SmallRye) jars are present in classpath.
-
Method Summary
Modifier and TypeMethodDescriptionaccurateSize(boolean accurateSize) Enables accurate size computation for numberOfEntries statistics.Configuration for the asynchronous operations thread poolConfiguration for the blocking thread poolbuild()Builds aGlobalConfigurationobject using the settings applied to this buildercreate()Create the configuration beandefaultCacheName(String defaultCacheName) Sets the name of the cache that acts as the default cache and is returned byEmbeddedCacheManager.getCache().booleanenabled()Metrics are enabled if at least one of the metric types is enabled.Configuration for the expiration thread poolbooleangauges()Are gauges enabled?gauges(boolean gauges) Enables or disables gauges.protected GlobalConfigurationBuilderGlobal state configurationbooleanAre histograms enabled?histograms(boolean histograms) Enables or disables histograms.jmx()Global JMX configuration.Configuration for the listener thread poolmetrics()Global microprofile metrics configuration.modules()Global modules configurationbooleanPut the cache manager and cache name in tags rather then include them in the metric name.namesAsTags(boolean namesAsTags) Put the cache manager and cache name in tags rather then include them in the metric name.Configuration for the non blocking thread poolConfiguration for the persistence thread poolprefix()The global prefix to add to all metric names.The global prefix to add to all metric names.read(GlobalMetricsConfiguration template) Reads the configuration from an already created configuration bean into this builder.security()Security-related configurationGlobal serialization (i.e.shutdown()Shutdown configurationsite()Cross-site replication configurationConfiguration for the state-transfer thread pooltoString()Transport-related (i.e.Methods inherited from interface org.infinispan.configuration.global.GlobalConfigurationChildBuilder
globalJmxStatistics
-
Method Details
-
enabled
public boolean enabled()Metrics are enabled if at least one of the metric types is enabled. Seegauges(),histograms(). -
gauges
public boolean gauges()Are gauges enabled? -
gauges
Enables or disables gauges. -
histograms
public boolean histograms()Are histograms enabled? -
histograms
Enables or disables histograms. -
prefix
The global prefix to add to all metric names. -
prefix
The global prefix to add to all metric names. -
namesAsTags
public boolean namesAsTags()Put the cache manager and cache name in tags rather then include them in the metric name. -
namesAsTags
Put the cache manager and cache name in tags rather then include them in the metric name. -
accurateSize
Enables accurate size computation for numberOfEntries statistics. Note that this doesn't affect invocations of theCache.size()method. -
create
Description copied from interface:BuilderCreate the configuration bean- Specified by:
createin interfaceBuilder<GlobalMetricsConfiguration>- Returns:
-
read
Description copied from interface:BuilderReads the configuration from an already created configuration bean into this builder. Returns an appropriate builder to allow fluent configuration- Specified by:
readin interfaceBuilder<GlobalMetricsConfiguration>- Parameters:
template- the configuration from which to "clone" this config if needed.
-
toString
-
getGlobalConfig
-
transport
Description copied from interface:GlobalConfigurationChildBuilderTransport-related (i.e. clustering) configuration- Specified by:
transportin interfaceGlobalConfigurationChildBuilder
-
metrics
Description copied from interface:GlobalConfigurationChildBuilderGlobal microprofile metrics configuration.- Specified by:
metricsin interfaceGlobalConfigurationChildBuilder
-
jmx
Description copied from interface:GlobalConfigurationChildBuilderGlobal JMX configuration.- Specified by:
jmxin interfaceGlobalConfigurationChildBuilder
-
globalState
Description copied from interface:GlobalConfigurationChildBuilderGlobal state configuration- Specified by:
globalStatein interfaceGlobalConfigurationChildBuilder
-
serialization
Description copied from interface:GlobalConfigurationChildBuilderGlobal serialization (i.e. marshalling) configuration- Specified by:
serializationin interfaceGlobalConfigurationChildBuilder
-
listenerThreadPool
Description copied from interface:GlobalConfigurationChildBuilderConfiguration for the listener thread pool- Specified by:
listenerThreadPoolin interfaceGlobalConfigurationChildBuilder
-
asyncThreadPool
Description copied from interface:GlobalConfigurationChildBuilderConfiguration for the asynchronous operations thread pool- Specified by:
asyncThreadPoolin interfaceGlobalConfigurationChildBuilder
-
expirationThreadPool
Description copied from interface:GlobalConfigurationChildBuilderConfiguration for the expiration thread pool- Specified by:
expirationThreadPoolin interfaceGlobalConfigurationChildBuilder
-
persistenceThreadPool
Description copied from interface:GlobalConfigurationChildBuilderConfiguration for the persistence thread pool- Specified by:
persistenceThreadPoolin interfaceGlobalConfigurationChildBuilder
-
stateTransferThreadPool
Description copied from interface:GlobalConfigurationChildBuilderConfiguration for the state-transfer thread pool- Specified by:
stateTransferThreadPoolin interfaceGlobalConfigurationChildBuilder
-
blockingThreadPool
Description copied from interface:GlobalConfigurationChildBuilderConfiguration for the blocking thread pool- Specified by:
blockingThreadPoolin interfaceGlobalConfigurationChildBuilder
-
nonBlockingThreadPool
Description copied from interface:GlobalConfigurationChildBuilderConfiguration for the non blocking thread pool- Specified by:
nonBlockingThreadPoolin interfaceGlobalConfigurationChildBuilder
-
security
Description copied from interface:GlobalConfigurationChildBuilderSecurity-related configuration- Specified by:
securityin interfaceGlobalConfigurationChildBuilder
-
shutdown
Description copied from interface:GlobalConfigurationChildBuilderShutdown configuration- Specified by:
shutdownin interfaceGlobalConfigurationChildBuilder
-
site
Description copied from interface:GlobalConfigurationChildBuilderCross-site replication configuration- Specified by:
sitein interfaceGlobalConfigurationChildBuilder
-
modules
Description copied from interface:GlobalConfigurationChildBuilderGlobal modules configuration- Specified by:
modulesin interfaceGlobalConfigurationChildBuilder
-
defaultCacheName
Description copied from interface:GlobalConfigurationChildBuilderSets the name of the cache that acts as the default cache and is returned byEmbeddedCacheManager.getCache(). Not- Specified by:
defaultCacheNamein interfaceGlobalConfigurationChildBuilder
-
build
Description copied from interface:GlobalConfigurationChildBuilderBuilds aGlobalConfigurationobject using the settings applied to this builder- Specified by:
buildin interfaceGlobalConfigurationChildBuilder
-