| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- # Aggregation methods for whisper files. Entries are scanned in order,
- # and first match wins. This file is scanned for changes every 60 seconds
- #
- # [name]
- # pattern = <regex>
- # xFilesFactor = <float between 0 and 1>
- # aggregationMethod = <average|sum|last|max|min>
- #
- # name: Arbitrary unique name for the rule
- # pattern: Regex pattern to match against the metric name
- # xFilesFactor: Ratio of valid data points required for aggregation to the next retention to occur
- # aggregationMethod: function to apply to data points for aggregation
- #
- [min]
- pattern = \.lower$
- xFilesFactor = 0.1
- aggregationMethod = min
- [max]
- pattern = \.upper(_\d+)?$
- xFilesFactor = 0.1
- aggregationMethod = max
- [sum]
- pattern = \.sum$
- xFilesFactor = 0
- aggregationMethod = sum
- [count]
- pattern = \.count$
- xFilesFactor = 0
- aggregationMethod = sum
- [count_legacy]
- pattern = ^stats_counts.*
- xFilesFactor = 0
- aggregationMethod = sum
- [default_average]
- pattern = .*
- xFilesFactor = 0.3
- aggregationMethod = average
|