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",