Skip to content

Commit d17b9bd

Browse files
authored
Reset avg accumulator correctly (#541)
Signed-off-by: 🌲 Harry 🌊 John 🏔 <[email protected]>
1 parent e741226 commit d17b9bd

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

engine/engine_test.go

+9
Original file line numberDiff line numberDiff line change
@@ -325,6 +325,15 @@ or
325325
step: 30 * time.Second,
326326
query: `avg without (pod) (http_requests_total)`,
327327
},
328+
{
329+
name: "avg fuzz",
330+
load: `load 30s
331+
http_requests_total{pod="nginx-1", route="/"} NaN NaN NaN NaN NaN 0.000053234+0.000003x10 NaN NaN
332+
http_requests_total{pod="nginx-2", route="/"} NaN NaN NaN NaN NaN 0.00004123412+0.000004x10 NaN NaN`,
333+
query: `avg(stdvar_over_time(http_requests_total[2m:1m]))`,
334+
start: time.Unix(0, 0),
335+
end: time.Unix(300, 0),
336+
},
328337
{
329338
name: "func with scalar arg that selects storage, checks whether same series handled correctly",
330339
load: `load 30s

execution/aggregate/accumulator.go

+3
Original file line numberDiff line numberDiff line change
@@ -473,6 +473,9 @@ func (a *avgAcc) ValueType() ValueType {
473473

474474
func (a *avgAcc) Reset(_ float64) {
475475
a.hasValue = false
476+
a.incremental = false
477+
a.kahanSum = 0
478+
a.kahanC = 0
476479
a.count = 0
477480

478481
a.histCount = 0

0 commit comments

Comments
 (0)