Collect implements Collector.
(ch chan<- Metric)
| 125 | |
| 126 | // Collect implements Collector. |
| 127 | func (m *MetricVec) Collect(ch chan<- Metric) { m.metricMap.Collect(ch) } |
| 128 | |
| 129 | // Reset deletes all metrics in this vector. |
| 130 | func (m *MetricVec) Reset() { m.metricMap.Reset() } |