| 152 | } |
| 153 | |
| 154 | type wrappingCollector struct { |
| 155 | wrappedCollector Collector |
| 156 | prefix string |
| 157 | labels Labels |
| 158 | } |
| 159 | |
| 160 | func (c *wrappingCollector) Collect(ch chan<- Metric) { |
| 161 | wrappedCh := make(chan Metric) |
nothing calls this directly
no outgoing calls
no test coverage detected