Class Search
java.lang.Object
io.micrometer.core.instrument.search.Search
Search terms for locating a
Meter or set of meters in a given registry based on
any combination of their name, tags, and type.-
Method Summary
Modifier and TypeMethodDescription@Nullable Countercounter()counters()@Nullable FunctionCounter@Nullable FunctionTimer@Nullable Gaugegauge()gauges()static Searchin(MeterRegistry registry) Initiate a new search for meters inside a registry.@Nullable LongTaskTimer@Nullable Metermeter()meters()Meter contains a tag with the exact name.Meter contains a tag matching the name predicate.@Nullable DistributionSummarysummary()Meter contains a tag with the matching key and value.Meter contains a tag with the provided key and a value matchingtagValueMatches.Meter contains tags with the matching keys.tagKeys(Collection<String> tagKeys) Meter contains tags with the matching keys.Meter contains tags with the matching tag keys and values.Meter contains tags with the matching tag keys and values.@Nullable TimeGauge@Nullable Timertimer()timers()
-
Method Details
-
name
Meter contains a tag with the exact name.- Parameters:
exactName- Name to match against.- Returns:
- This search.
-
name
Meter contains a tag matching the name predicate.- Parameters:
nameMatches- Name matching predicate.- Returns:
- This search.
-
tags
Meter contains tags with the matching tag keys and values.- Parameters:
tags- The tags to match.- Returns:
- This search.
-
tags
Meter contains tags with the matching tag keys and values.- Parameters:
tags- Must be an even number of arguments representing key/value pairs of tags.- Returns:
- This search.
-
tag
Meter contains a tag with the matching key and value.- Parameters:
tagKey- The tag key to match.tagValue- The tag value to match.- Returns:
- This search.
-
tagKeys
Meter contains tags with the matching keys.- Parameters:
tagKeys- The tag keys to match.- Returns:
- This search.
-
tagKeys
Meter contains tags with the matching keys.- Parameters:
tagKeys- The tag keys to match.- Returns:
- This search.
- Since:
- 1.7.0
-
tag
Meter contains a tag with the provided key and a value matchingtagValueMatches.- Parameters:
tagKey- The tag key to match.tagValueMatches- The test on the tag value.- Returns:
- This search.
- Since:
- 1.6.0
-
timer
- Returns:
- The first matching
Timer, ornullif none match.
-
counter
- Returns:
- The first matching
Counter, ornullif none match.
-
gauge
- Returns:
- The first matching
Gauge, ornullif none match.
-
functionCounter
- Returns:
- The first matching
FunctionCounter, ornullif none match.
-
timeGauge
- Returns:
- The first matching
TimeGauge, ornullif none match.
-
functionTimer
- Returns:
- The first matching
FunctionTimer, ornullif none match.
-
summary
- Returns:
- The first matching
DistributionSummary, ornullif none match.
-
longTaskTimer
- Returns:
- The first matching
LongTaskTimer, ornullif none match.
-
meter
- Returns:
- The first matching
Meter, ornullif none match.
-
meters
- Returns:
- All matching meters, or an empty collection if none match.
-
acceptFilter
- Returns:
- An accept filter that accepts any meter that matches this search.
- Since:
- 1.6.0
-
counters
- Returns:
- All matching
Countermeters.
-
gauges
- Returns:
- All matching
Gaugemeters.
-
timers
- Returns:
- All matching
Timermeters.
-
summaries
- Returns:
- All matching
DistributionSummarymeters.
-
longTaskTimers
- Returns:
- All matching
LongTaskTimermeters.
-
functionCounters
- Returns:
- All matching
FunctionCountermeters.
-
functionTimers
- Returns:
- All matching
FunctionTimermeters.
-
timeGauges
- Returns:
- All matching
TimeGaugemeters.
-
in
Initiate a new search for meters inside a registry.- Parameters:
registry- The registry to locate meters in.- Returns:
- A new search.
-