(ch chan<- *prometheus.Desc)
| 41 | ) |
| 42 | |
| 43 | func (e errorCollector) Describe(ch chan<- *prometheus.Desc) { |
| 44 | ch <- prometheus.NewDesc("invalid_metric", "not helpful", nil, nil) |
| 45 | } |
| 46 | |
| 47 | func (e errorCollector) Collect(ch chan<- prometheus.Metric) { |
| 48 | ch <- prometheus.NewInvalidMetric( |