Skip to content

Commit

Permalink
reducers: Reduce max stats window to 10 min
Browse files Browse the repository at this point in the history
  • Loading branch information
victorges committed Nov 15, 2022
1 parent c6aa7ae commit e8f6368
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion health/reducers/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
)

var (
statsWindows = []time.Duration{1 * time.Minute, 10 * time.Minute, 1 * time.Hour}
statsWindows = []time.Duration{1 * time.Minute, 10 * time.Minute}
maxStatsWindow = statsWindows[len(statsWindows)-1]
)

Expand Down

0 comments on commit e8f6368

Please sign in to comment.