File tree 2 files changed +12
-0
lines changed
2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 325
325
step : 30 * time .Second ,
326
326
query : `avg without (pod) (http_requests_total)` ,
327
327
},
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
+ },
328
337
{
329
338
name : "func with scalar arg that selects storage, checks whether same series handled correctly" ,
330
339
load : `load 30s
Original file line number Diff line number Diff line change @@ -473,6 +473,9 @@ func (a *avgAcc) ValueType() ValueType {
473
473
474
474
func (a * avgAcc ) Reset (_ float64 ) {
475
475
a .hasValue = false
476
+ a .incremental = false
477
+ a .kahanSum = 0
478
+ a .kahanC = 0
476
479
a .count = 0
477
480
478
481
a .histCount = 0
You can’t perform that action at this time.
0 commit comments