Remove label value sanitization in prometheus output (#2939)

This commit is contained in:
Daniel Nelson
2017-06-21 12:36:29 -07:00
committed by GitHub
parent dcdcb70cb1
commit 929ba0a637
2 changed files with 2 additions and 2 deletions

View File

@@ -205,7 +205,7 @@ func (p *PrometheusClient) Write(metrics []telegraf.Metric) error {
labels := make(map[string]string)
for k, v := range tags {
labels[sanitize(k)] = sanitize(v)
labels[sanitize(k)] = v
}
for fn, fv := range point.Fields() {