(name string, topic string, r metrics.Registry)
| 40 | } |
| 41 | |
| 42 | func getOrRegisterTopicHistogram(name string, topic string, r metrics.Registry) metrics.Histogram { |
| 43 | return getOrRegisterHistogram(getMetricNameForTopic(name, topic), r) |
| 44 | } |
| 45 | |
| 46 | // cleanupRegistry is an implementation of metrics.Registry that allows |
| 47 | // to unregister from the parent registry only those metrics |
no test coverage detected