Skip to content

Commit 43668b8

Browse files
committed
surpress histogram metrics
1 parent a4d81f6 commit 43668b8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

exporter/metrics.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,10 @@ func makeMetrics(prefix string, m bson.M, labels map[string]string, compatibleMo
309309
}
310310

311311
for k, val := range m {
312+
// histogram metrics are currently unsupported (PMM-14337)
313+
if k == "histograms" {
314+
continue
315+
}
312316
nextPrefix := prefix + k
313317

314318
l := make(map[string]string)

0 commit comments

Comments
 (0)