(reg prometheus.Registerer)
| 64 | } |
| 65 | |
| 66 | func newCompactorMetrics(reg prometheus.Registerer) *compactorMetrics { |
| 67 | return newCompactorMetricsWithLabels(reg, commonLabels, append(commonLabels, compactionLabels...)) |
| 68 | } |
| 69 | |
| 70 | func newCompactorMetricsWithLabels(reg prometheus.Registerer, commonLabels []string, compactionLabels []string) *compactorMetrics { |
| 71 | var m compactorMetrics |