replace @ character with - for librato

This commit is contained in:
JP 2016-03-18 11:25:51 -05:00 committed by Michele Fadda
parent 602ac1479b
commit 0682a95c48
1 changed files with 4 additions and 1 deletions

View File

@ -159,7 +159,10 @@ func (l *Librato) buildGaugeName(m telegraf.Metric, fieldName string) string {
serializedMetric := graphiteSerializer.SerializeBucketName(m, fieldName)
// Deal with slash characters:
return strings.Replace(serializedMetric, "/", "-", -1)
replacedString := strings.Replace(serializedMetric, "/", "-", -1)
// Deal with @ characters:
replacedString = strings.Replace(replacedString, "@", "-", -1)
return replacedString
}
func (l *Librato) buildGauges(m telegraf.Metric) ([]*Gauge, error) {