From 3e22aabe28675fd03be9d18a7bc0cce69cc41837 Mon Sep 17 00:00:00 2001 From: UlricQin Date: Wed, 21 Jul 2021 18:11:45 +0800 Subject: [PATCH] tag value support blank --- vos/metric.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vos/metric.go b/vos/metric.go index b182c882..767b3474 100644 --- a/vos/metric.go +++ b/vos/metric.go @@ -76,8 +76,7 @@ func (m *MetricPoint) Tidy(now int64) error { if r == '\t' || r == '\r' || r == '\n' || - r == ',' || - r == ' ' { + r == ',' { return '_' } return r