File tree 2 files changed +9
-0
lines changed
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -315,6 +315,10 @@ func (p *TextParser) startLabelValue() stateFn {
315
315
if p .readTokenAsLabelValue (); p .err != nil {
316
316
return nil
317
317
}
318
+ if ! model .LabelValue (p .currentToken .String ()).IsValid () {
319
+ p .parseError (fmt .Sprintf ("invalid label value %q" , p .currentToken .String ()))
320
+ return nil
321
+ }
318
322
p .currentLabelPair .Value = proto .String (p .currentToken .String ())
319
323
// Special treatment of summaries:
320
324
// - Quantile labels are special, will result in dto.Quantile later.
Original file line number Diff line number Diff line change @@ -559,6 +559,11 @@ metric_bucket{le="bla"} 3.14
559
559
` ,
560
560
err : "text format parsing error in line 3: expected float as value for 'le' label" ,
561
561
},
562
+ // 19: Invalid UTF-8 in label value.
563
+ {
564
+ in : "metric{l=\" \xbd \" } 3.14\n " ,
565
+ err : "text format parsing error in line 1: invalid label value \" \\ xbd\" " ,
566
+ },
562
567
}
563
568
564
569
for i , scenario := range scenarios {
You can’t perform that action at this time.
0 commit comments