Added sanization of fieldName

This commit is contained in:
G-regL 2016-04-28 11:35:00 -04:00
parent 1390c22004
commit 12cbf86010
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ func (s *GraphiteSerializer) Serialize(metric telegraf.Metric) ([]string, error)
valueS := fmt.Sprintf("%#v", value) valueS := fmt.Sprintf("%#v", value)
point := fmt.Sprintf("%s %s %d", point := fmt.Sprintf("%s %s %d",
// insert "field" section of template // insert "field" section of template
InsertField(bucket, fieldName), InsertField(bucket, sanitizedChars.Replace(fieldName)),
valueS, valueS,
timestamp) timestamp)
out = append(out, point) out = append(out, point)