From f9b25968f77ff295c09816102a6b8fa9a3445ff5 Mon Sep 17 00:00:00 2001 From: Ed Welch Date: Thu, 12 Dec 2019 16:50:54 -0500 Subject: [PATCH] change the chunk size histogram to allow for bigger buckets (#1409) * change the chunk size histogram to allow for bigger buckets Signed-off-by: Edward Welch * changing buckets again Signed-off-by: Edward Welch --- pkg/ingester/flush.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/ingester/flush.go b/pkg/ingester/flush.go index 59d73da8c74d..7ab60d410a2e 100644 --- a/pkg/ingester/flush.go +++ b/pkg/ingester/flush.go @@ -42,7 +42,7 @@ var ( Namespace: "loki", Name: "ingester_chunk_size_bytes", Help: "Distribution of stored chunk sizes (when stored).", - Buckets: prometheus.ExponentialBuckets(10000, 2, 7), // biggest bucket is 10000*2^(7-1) = 640000 (~640KB) + Buckets: prometheus.ExponentialBuckets(20000, 2, 10), // biggest bucket is 20000*2^(10-1) = 10,240,000 (~10.2MB) }) chunkCompressionRatio = promauto.NewHistogram(prometheus.HistogramOpts{ Namespace: "loki",