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...)
}