mirror of
https://github.com/prometheus/prometheus
synced 2024-12-27 09:02:53 +00:00
Histogram: Fix crash when compacting only empty buckets
Signed-off-by: beorn7 <beorn@grafana.com>
This commit is contained in:
parent
08efde4de5
commit
15583af9bb
@ -471,7 +471,7 @@ func compactBuckets(buckets []float64, spans []Span, maxEmptyBuckets int) ([]flo
|
||||
iSpan++
|
||||
}
|
||||
}
|
||||
if maxEmptyBuckets == 0 {
|
||||
if maxEmptyBuckets == 0 || len(buckets) == 0 {
|
||||
return buckets, spans
|
||||
}
|
||||
|
||||
|
@ -889,6 +889,22 @@ func TestFloatHistogramCompact(t *testing.T) {
|
||||
NegativeBuckets: []float64{3.1, 3, 0, 0, 0, 1.234e5, 1000, 0, 3, 4},
|
||||
},
|
||||
},
|
||||
{
|
||||
"only empty buckets and maxEmptyBuckets greater zero",
|
||||
&FloatHistogram{
|
||||
PositiveSpans: []Span{{-4, 6}, {3, 3}},
|
||||
PositiveBuckets: []float64{0, 0, 0, 0, 0, 0, 0, 0, 0},
|
||||
NegativeSpans: []Span{{0, 7}},
|
||||
NegativeBuckets: []float64{0, 0, 0, 0, 0, 0, 0},
|
||||
},
|
||||
3,
|
||||
&FloatHistogram{
|
||||
PositiveSpans: []Span{},
|
||||
PositiveBuckets: []float64{},
|
||||
NegativeSpans: []Span{},
|
||||
NegativeBuckets: []float64{},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
for _, c := range cases {
|
||||
|
Loading…
Reference in New Issue
Block a user