forked from graphite-project/carbon
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
18 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,18 @@ | ||
# This file defines regular expression patterns that can be used to | ||
# rewrite metric names in a search & replace fashion. It consists of two | ||
# sections, [pre] and [post]. The rules in the pre section are applied to | ||
# metric names as soon as they are received. The post rules are applied | ||
# after aggregation has taken place. | ||
# | ||
# The general form of each rule is as follows: | ||
# | ||
# regex-pattern = replacement-text | ||
# | ||
# For example: | ||
# | ||
# [post] | ||
# _sum$ = | ||
# _avg$ = | ||
# | ||
# These rules would strip off a suffix of _sum or _avg from any metric names | ||
# after aggregation. |