()
| 44 | } |
| 45 | |
| 46 | func (t *TestRegistry) NewLabelBuilder() LabelBuilder { |
| 47 | nds := NewDrainSanitizer("test", func(string) string { return SpanNameSanitizationDisabled }, 0) |
| 48 | |
| 49 | return NewLabelBuilder(0, 0, nds, newTestLabelLimiter()) |
| 50 | } |
| 51 | |
| 52 | func (t *TestRegistry) NewInfoMetricLabelBuilder() LabelBuilder { |
| 53 | return NewLabelBuilder(0, 0, noopSanitizer{}, noopLabelLimiter{}) |
nothing calls this directly
no test coverage detected