mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
Change relabel_replace() to do full-string matches.
THIS IS A BREAKING CHANGE. Fixes part of https://github.com/prometheus/prometheus/issues/996
This commit is contained in:
parent
dfbda8fd3f
commit
61c42c8da0
|
@ -616,7 +616,7 @@ func funcLabelReplace(ev *evaluator, args Expressions) model.Value {
|
|||
regexStr = ev.evalString(args[4]).Value
|
||||
)
|
||||
|
||||
regex, err := regexp.Compile(regexStr)
|
||||
regex, err := regexp.Compile("^(?:" + regexStr + ")$")
|
||||
if err != nil {
|
||||
ev.errorf("invalid regular expression in label_replace(): %s", regexStr)
|
||||
}
|
||||
|
|
11
promql/testdata/functions.test
vendored
11
promql/testdata/functions.test
vendored
|
@ -100,11 +100,16 @@ load 5m
|
|||
testmetric{src="source-value-10",dst="original-destination-value"} 0
|
||||
testmetric{src="source-value-20",dst="original-destination-value"} 1
|
||||
|
||||
# label_replace does a substring match and replace.
|
||||
eval instant at 0m label_replace(testmetric, "dst", "destination-value-$1", "src", "value-(.*)")
|
||||
# label_replace does a full-string match and replace.
|
||||
eval instant at 0m label_replace(testmetric, "dst", "destination-value-$1", "src", "source-value-(.*)")
|
||||
testmetric{src="source-value-10",dst="destination-value-10"} 0
|
||||
testmetric{src="source-value-20",dst="destination-value-20"} 1
|
||||
|
||||
# label_replace does not do a sub-string match.
|
||||
eval instant at 0m label_replace(testmetric, "dst", "destination-value-$1", "src", "value-(.*)")
|
||||
testmetric{src="source-value-10",dst="original-destination-value"} 0
|
||||
testmetric{src="source-value-20",dst="original-destination-value"} 1
|
||||
|
||||
# label_replace works with multiple capture groups.
|
||||
eval instant at 0m label_replace(testmetric, "dst", "$1-value-$2", "src", "(.*)-value-(.*)")
|
||||
testmetric{src="source-value-10",dst="source-value-10"} 0
|
||||
|
@ -129,7 +134,7 @@ eval instant at 0m label_replace(testmetric, "dst", "value-$1", "src", "non-matc
|
|||
testmetric{src="source-value-20",dst="original-destination-value"} 1
|
||||
|
||||
# label_replace drops labels that are set to empty values.
|
||||
eval instant at 0m label_replace(testmetric, "dst", "", "dst", "")
|
||||
eval instant at 0m label_replace(testmetric, "dst", "", "dst", ".*")
|
||||
testmetric{src="source-value-10"} 0
|
||||
testmetric{src="source-value-20"} 1
|
||||
|
||||
|
|
Loading…
Reference in a new issue