mirror of
https://github.com/prometheus/prometheus
synced 2024-12-27 00:53:12 +00:00
promql: validate label_join
destination label
Signed-off-by: tdakkota <tanc13@yandex.ru>
This commit is contained in:
parent
a9a4fbafb0
commit
f6834c347a
@ -1386,6 +1386,9 @@ func (ev *evaluator) evalLabelJoin(args parser.Expressions) (parser.Value, annot
|
||||
}
|
||||
srcLabels[i-3] = src
|
||||
}
|
||||
if !model.LabelName(dst).IsValid() {
|
||||
panic(fmt.Errorf("invalid destination label name in label_join(): %s", dst))
|
||||
}
|
||||
|
||||
val, ws := ev.eval(args[0])
|
||||
matrix := val.(Matrix)
|
||||
|
Loading…
Reference in New Issue
Block a user