Without explicit forwarding of Describe, Collect, Reset, those methods won't show up in GoDoc. Describe implements Collector.
(ch chan<- *Desc)
| 122 | |
| 123 | // Describe implements Collector. |
| 124 | func (m *MetricVec) Describe(ch chan<- *Desc) { m.metricMap.Describe(ch) } |
| 125 | |
| 126 | // Collect implements Collector. |
| 127 | func (m *MetricVec) Collect(ch chan<- Metric) { m.metricMap.Collect(ch) } |