public interface MeterFilter
MeterRegistry
to create new metrics, allow for filtering out
the metric altogether, transforming its ID (name or tags) in some way, and transforming its
configuration.
All new metrics should pass through each MeterFilter
in the order in which they were added.
ForgeRock changes:
- Removed @incubating annotations
Modifier and Type | Method and Description |
---|---|
static MeterFilter |
accept()
Include a meter in published metrics.
|
default MeterFilterReply |
accept(Meter.Id id) |
static MeterFilter |
accept(Predicate<Meter.Id> iff)
When the given predicate is
true , the meter should be present in published metrics. |
static MeterFilter |
commonTags(Iterable<Tag> tags)
Add common tags that are applied to every meter created afterward.
|
default HistogramConfig |
configure(Meter.Id id,
HistogramConfig config)
This is only called when filtering new timers and distribution summaries (i.e.
|
static MeterFilter |
deny()
Reject a meter in published metrics.
|
static MeterFilter |
deny(Predicate<Meter.Id> iff)
When the given predicate is
true , the meter should NOT be present in published metrics. |
static MeterFilter |
denyNameStartsWith(String prefix)
Meters that start with the provided name should NOT be present in published metrics.
|
static MeterFilter |
ignoreTags(String... tagKeys)
Suppress tags with a given tag key.
|
default Meter.Id |
map(Meter.Id id) |
static MeterFilter |
maximumAllowableMetrics(int maximumTimeSeries)
Useful for cost-control in monitoring systems which charge directly or indirectly by the
total number of time series you generate.
|
static MeterFilter |
maximumAllowableTags(String meterNamePrefix,
String tagKey,
int maximumTagValues,
MeterFilter onMaxReached)
Places an upper bound on the number of tags produced by matching metrics.
|
static MeterFilter |
renameTag(String meterNamePrefix,
String fromTagKey,
String toTagKey)
Rename a tag key for every metric beginning with a given prefix.
|
static MeterFilter |
replaceTagValues(String tagKey,
Function<String,String> replacement,
String... exceptions)
Replace tag values according to the provided mapping for all matching tag keys.
|
static MeterFilter commonTags(Iterable<Tag> tags)
tags
- Common tags.static MeterFilter renameTag(String meterNamePrefix, String fromTagKey, String toTagKey)
meterNamePrefix
- Apply filter to metrics that begin with this name.fromTagKey
- Rename tags matching this key.toTagKey
- Rename to this key.static MeterFilter ignoreTags(String... tagKeys)
tagKeys
- Keys of tags that should be suppressed.static MeterFilter replaceTagValues(String tagKey, Function<String,String> replacement, String... exceptions)
tagKey
- The tag key for which replacements should be madereplacement
- The value to replace withexceptions
- All a matching tag with this value to retain its original valuestatic MeterFilter accept(Predicate<Meter.Id> iff)
true
, the meter should be present in published metrics.iff
- When a meter id matches, guarantee its inclusion in published metrics.static MeterFilter deny(Predicate<Meter.Id> iff)
true
, the meter should NOT be present in published metrics.iff
- When a meter id matches, guarantee its exclusion in published metrics.static MeterFilter accept()
maximumAllowableTags(java.lang.String, java.lang.String, int, org.forgerock.monitoring.api.instrument.config.MeterFilter)
.static MeterFilter deny()
maximumAllowableTags(java.lang.String, java.lang.String, int, org.forgerock.monitoring.api.instrument.config.MeterFilter)
.static MeterFilter maximumAllowableMetrics(int maximumTimeSeries)
While this filter doesn't discriminate between your most critical and less useful metrics in deciding what to drop (all the metrics you intend to use should fit below this threshold), it can effectively cap your risk of an accidentally high-cardiality metric costing too much.
maximumTimeSeries
- The total number of unique name/tag permutations allowed before filtering kicks in.static MeterFilter maximumAllowableTags(String meterNamePrefix, String tagKey, int maximumTagValues, MeterFilter onMaxReached)
meterNamePrefix
- Apply filter to metrics that begin with this name.tagKey
- The tag to place an upper bound on.maximumTagValues
- The total number of tag values that are allowable.onMaxReached
- After the maximum number of tag values have been seen, apply this filter.static MeterFilter denyNameStartsWith(String prefix)
prefix
- When a meter name starts with the prefix, guarantee its exclusion in published metrics.default MeterFilterReply accept(Meter.Id id)
id
- Id with map(org.forgerock.monitoring.api.instrument.Meter.Id)
transformations applied.@Nullable default HistogramConfig configure(Meter.Id id, HistogramConfig config)
HistogramConfig
).id
- Id with map(org.forgerock.monitoring.api.instrument.Meter.Id)
transformations applied.config
- A histogram configuration guaranteed to be non-null.Copyright 2011-2017 ForgeRock AS.