mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
app/vmselect: disable time-window adjustment for min/max_over_time
funcs (#1658)
Adjustment results into discrepancy between Prometheus and VM on time windows smaller than scrape interval. Signed-off-by: hagen1778 <roman@victoriametrics.com>
This commit is contained in:
parent
ead59bdebf
commit
5dc84bf210
1 changed files with 2 additions and 0 deletions
|
@ -174,6 +174,8 @@ var rollupFuncsCannotAdjustWindow = map[string]bool{
|
|||
"zscore_over_time": true,
|
||||
"first_over_time": true,
|
||||
"last_over_time": true,
|
||||
"min_over_time": true,
|
||||
"max_over_time": true,
|
||||
}
|
||||
|
||||
var rollupFuncsRemoveCounterResets = map[string]bool{
|
||||
|
|
Loading…
Reference in a new issue