collidingCollector is a collection of prometheus.Collectors, and is itself a prometheus.Collector.
| 1100 | // collidingCollector is a collection of prometheus.Collectors, |
| 1101 | // and is itself a prometheus.Collector. |
| 1102 | type collidingCollector struct { |
| 1103 | i int |
| 1104 | name string |
| 1105 | |
| 1106 | a, b, c, d prometheus.Collector |
| 1107 | } |
| 1108 | |
| 1109 | // Describe satisfies part of the prometheus.Collector interface. |
| 1110 | func (m *collidingCollector) Describe(desc chan<- *prometheus.Desc) { |
nothing calls this directly
no outgoing calls
no test coverage detected