Change tagkv count limit

This commit is contained in:
710leo 2020-07-08 18:14:49 +08:00
parent 5bb48df01d
commit a283329e4d
1 changed files with 2 additions and 2 deletions

View File

@ -109,8 +109,8 @@ func (m *MetricValue) CheckValidity(now int64) (err error) {
}
}
if len(m.TagsMap) > 12 {
err = fmt.Errorf("tagkv count is too large > 12")
if len(m.TagsMap) > 20 {
err = fmt.Errorf("tagkv count is too large > 20")
}
if len(m.Metric) > 128 {