Use second add_tags/del_tags only if metric gets renamed

This commit is contained in:
Thomas Roehl 2022-05-04 14:32:34 +02:00
parent 9bd0705875
commit 463d554b8b

View File

@ -287,10 +287,10 @@ func (r *metricRouter) Start() {
if new, ok := r.config.RenameMetrics[name]; ok {
point.SetName(new)
point.AddMeta("oldname", name)
r.DoAddTags(point)
r.DoDelTags(point)
}
r.DoAddTags(point)
r.DoDelTags(point)
r.prepareUnit(point)
for _, o := range r.outputs {