Package io.micrometer.core.instrument
Class MeterRegistry.Config
java.lang.Object
io.micrometer.core.instrument.MeterRegistry.Config
- Enclosing class:
- MeterRegistry
public class MeterRegistry.Config
extends java.lang.Object
Access to configuration options for this registry.
-
Constructor Summary
Constructors Constructor Description Config() -
Method Summary
Modifier and Type Method Description Clockclock()MeterRegistry.ConfigcommonTags(java.lang.Iterable<Tag> tags)Append a list of common tags to apply to all metrics reported to the monitoring system.MeterRegistry.ConfigcommonTags(java.lang.String... tags)Append a list of common tags to apply to all metrics reported to the monitoring system.MeterRegistry.ConfigmeterFilter(MeterFilter filter)Add a meter filter to the registry.NamingConventionnamingConvention()MeterRegistry.ConfignamingConvention(NamingConvention convention)Use the provided naming convention, overriding the default for your monitoring system.MeterRegistry.ConfigonMeterAdded(java.util.function.Consumer<Meter> meterAddedListener)Register an event listener for each meter added to the registry.MeterRegistry.ConfigonMeterRegistrationFailed(java.util.function.BiConsumer<Meter.Id,java.lang.String> meterRegistrationFailedListener)Register an event listener for meter registration failures.MeterRegistry.ConfigonMeterRemoved(java.util.function.Consumer<Meter> meterRemovedListener)Register an event listener for each meter removed from the registry.PauseDetectorpauseDetector()MeterRegistry.ConfigpauseDetector(PauseDetector detector)Sets the default pause detector to use for all timers in this registry.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
Config
public Config()
-
-
Method Details
-
commonTags
Append a list of common tags to apply to all metrics reported to the monitoring system.- Parameters:
tags- Tags to add to every metric.- Returns:
- This configuration instance.
-
commonTags
Append a list of common tags to apply to all metrics reported to the monitoring system. Must be an even number of arguments representing key/value pairs of tags.- Parameters:
tags- MUST be an even number of arguments representing key/value pairs of tags.- Returns:
- This configuration instance.
-
meterFilter
Add a meter filter to the registry. Filters are applied in the order in which they are added.- Parameters:
filter- The filter to add to the registry.- Returns:
- This configuration instance.
-
onMeterAdded
Register an event listener for each meter added to the registry.- Parameters:
meterAddedListener- a meter-added event listener to be added- Returns:
- This configuration instance.
-
onMeterRemoved
@Incubating(since="1.1.0") public MeterRegistry.Config onMeterRemoved(java.util.function.Consumer<Meter> meterRemovedListener)Register an event listener for each meter removed from the registry.- Parameters:
meterRemovedListener- a meter-removed event listener to be added- Returns:
- This configuration instance.
- Since:
- 1.1.0
-
onMeterRegistrationFailed
@Incubating(since="1.6.0") public MeterRegistry.Config onMeterRegistrationFailed(java.util.function.BiConsumer<Meter.Id,java.lang.String> meterRegistrationFailedListener)Register an event listener for meter registration failures.- Parameters:
meterRegistrationFailedListener- An event listener for meter registration failures- Returns:
- This configuration instance
- Since:
- 1.6.0
-
namingConvention
Use the provided naming convention, overriding the default for your monitoring system.- Parameters:
convention- The naming convention to use.- Returns:
- This configuration instance.
-
namingConvention
- Returns:
- The naming convention currently in use on this registry.
-
clock
- Returns:
- The clock used to measure durations of timers and long task timers (and sometimes influences publishing behavior).
-
pauseDetector
Sets the default pause detector to use for all timers in this registry.- Parameters:
detector- The pause detector to use.- Returns:
- This configuration instance.
- See Also:
NoPauseDetector,ClockDriftPauseDetector
-
pauseDetector
- Returns:
- The pause detector that is currently in effect.
-