| 193 | } |
| 194 | |
| 195 | type wrappingMetric struct { |
| 196 | wrappedMetric Metric |
| 197 | prefix string |
| 198 | labels Labels |
| 199 | } |
| 200 | |
| 201 | func (m *wrappingMetric) Desc() *Desc { |
| 202 | return wrapDesc(m.wrappedMetric.Desc(), m.prefix, m.labels) |
nothing calls this directly
no outgoing calls
no test coverage detected