mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
Follow up change from #14354
Chunks are now grouped slightly differently, thus counter reset detection no longer works. The chunk from 40-43 is now processed independent of the remaining chunks. Signed-off-by: György Krajcsovits <gyorgy.krajcsovits@grafana.com>
This commit is contained in:
parent
e66c22203c
commit
b05f8aea61
|
@ -6105,7 +6105,7 @@ func testOOONativeHistogramsWithCounterResets(t *testing.T, scenario sampleTypeS
|
|||
shouldReset: func(v int64) bool {
|
||||
return v == 44
|
||||
},
|
||||
expCounterResetHints: []histogram.CounterResetHint{histogram.UnknownCounterReset, histogram.NotCounterReset, histogram.NotCounterReset, histogram.NotCounterReset, histogram.CounterReset},
|
||||
expCounterResetHints: []histogram.CounterResetHint{histogram.UnknownCounterReset, histogram.NotCounterReset, histogram.NotCounterReset, histogram.NotCounterReset, histogram.UnknownCounterReset},
|
||||
},
|
||||
{
|
||||
from: 50,
|
||||
|
|
Loading…
Reference in a new issue