go-chi/telemetry

When tags are passed to RecordSpan no tags are recorded.

tparker00 opened this issue · 0 comments

When sending tags in they are ignored and only the default quantile tags are added.

Looking at the function the tags value is never used

telemetry/telemetry.go

Lines 175 to 177 in 4591c19

func (n *Scope) RecordSpan(measurement string, tags map[string]string) tally.Stopwatch {
return n.scope.Timer(measurement + "_span").Start()
}