File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -77,14 +77,17 @@ series: <string>
77
77
# This uses expanding notation.
78
78
# Expanding notation:
79
79
# 'a+bxc' becomes 'a a+b a+(2*b) a+(3*b) … a+(c*b)'
80
+ # Read this as series starts at a, then c further samples incrementing by b.
80
81
# 'a-bxc' becomes 'a a-b a-(2*b) a-(3*b) … a-(c*b)'
82
+ # Read this as series starts at a, then c further samples decrementing by b (or incrementing by negative b).
81
83
# There are special values to indicate missing and stale samples:
82
84
# '_' represents a missing sample from scrape
83
85
# 'stale' indicates a stale sample
84
86
# Examples:
85
- # 1. '-2+4x3' becomes '-2 2 6 10'
86
- # 2. ' 1-2x4' becomes '1 -1 -3 -5 -7'
87
- # 3. ' 1 _x3 stale' becomes '1 _ _ _ stale'
87
+ # 1. '-2+4x3' becomes '-2 2 6 10' - series starts at -2, then 3 further samples incrementing by 4.
88
+ # 2. ' 1-2x4' becomes '1 -1 -3 -5 -7' - series starts at 1, then 4 further samples decrementing by 2.
89
+ # 3. ' 1x4' becomes '1 1 1 1 1' - shorthand for '1+0x4', series starts at 1, then 4 further samples incrementing by 0.
90
+ # 4. ' 1 _x3 stale' becomes '1 _ _ _ stale' - the missing sample cannot increment, so 3 missing samples are produced by the '_x3' expression.
88
91
values: <string>
89
92
` ` `
90
93
You can’t perform that action at this time.
0 commit comments