fixup metric labels helper

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
Василий Толстов 2021-10-31 14:46:40 +03:00
parent a167fd531e
commit b308e073a0
2 changed files with 4 additions and 4 deletions

View File

@ -47,10 +47,10 @@ func (r *victoriametricsMeter) buildName(name string, labels ...string) string {
return meter.BuildName(name, nlabels...)
}
for idx := 0; idx <= len(nlabels)/2; idx += 2 {
for idx := 0; idx < nl; idx++ {
nlabels[idx] = r.opts.LabelPrefix + nlabels[idx]
idx++
}
return meter.BuildName(name, nlabels...)
}

View File

@ -14,8 +14,8 @@ import (
func TestBuildName(t *testing.T) {
m := NewMeter()
im := m.(*victoriametricsMeter)
check := `micro_foo{micro_aaa="b",micro_bar="baz"}`
name := im.buildName("foo", "bar", "baz", "aaa", "b")
check := `micro_foo{micro_aaa="b",micro_bar="baz",micro_ccc="d"}`
name := im.buildName("foo", "bar", "baz", "aaa", "b", "ccc", "d")
if name != check {
t.Fatalf("metric name error: %s != %s", name, check)
}