-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
One file too much...
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Schema definitions for Whisper files. Entries are scanned in order, | ||
# and first match wins. This file is scanned for changes every 60 seconds. | ||
# | ||
# Definition Syntax: | ||
# | ||
# [name] | ||
# pattern = regex | ||
# retentions = timePerPoint:timeToStore, timePerPoint:timeToStore, ... | ||
# | ||
# Remember: To support accurate aggregation from higher to lower resolution | ||
# archives, the precision of a longer retention archive must be | ||
# cleanly divisible by precision of next lower retention archive. | ||
# | ||
# Valid: 60s:7d,300s:30d (300/60 = 5) | ||
# Invalid: 180s:7d,300s:30d (300/180 = 3.333) | ||
# | ||
|
||
# Carbon's internal metrics. This entry should match what is specified in | ||
# CARBON_METRIC_PREFIX and CARBON_METRIC_INTERVAL settings | ||
[carbon] | ||
pattern = ^carbon\. | ||
retentions = 10s:6h,1m:90d | ||
|
||
# 2023-09-27 - This is not used anymore and can be removed sometimes in the future. | ||
[half-hourly] | ||
pattern = ^(cothority|omniledger)\. | ||
retentions = 30m:30d,6h:1800d | ||
|
||
[minutely] | ||
pattern = .* | ||
retentions = 1m:6d,10m:1800d |