Package io.micrometer.core.instrument
Class FunctionCounter.Builder<T>
java.lang.Object
io.micrometer.core.instrument.FunctionCounter.Builder<T>
- Type Parameters:
T
- The type of the state object from which the counter value is extracted.
- Enclosing interface:
FunctionCounter
Fluent builder for function counters.
-
Method Summary
Modifier and TypeMethodDescriptiondescription
(String description) register
(MeterRegistry registry) Add the function counter to a single registry, or return an existing function counter in that registry.
-
Method Details
-
tags
- Parameters:
tags
- Must be an even number of arguments representing key/value pairs of tags.- Returns:
- The function counter builder with added tags.
-
tags
- Parameters:
tags
- Tags to add to the eventual function counter.- Returns:
- The function counter builder with added tags.
-
tag
- Parameters:
key
- The tag key.value
- The tag value.- Returns:
- The function counter builder with a single added tag.
-
description
- Parameters:
description
- Description text of the eventual function counter.- Returns:
- The function counter builder with added description.
-
baseUnit
- Parameters:
unit
- Base unit of the eventual counter.- Returns:
- The counter builder with added base unit.
-
register
Add the function counter to a single registry, or return an existing function counter in that registry. The returned function counter will be unique for each registry, but each registry is guaranteed to only create one function counter for the same combination of name and tags.- Parameters:
registry
- A registry to add the function counter to, if it doesn't already exist.- Returns:
- A new or existing function counter.
-