summaryrefslogtreecommitdiff
path: root/internal/stats/stats.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/stats/stats.go')
-rw-r--r--internal/stats/stats.go8
1 files changed, 6 insertions, 2 deletions
diff --git a/internal/stats/stats.go b/internal/stats/stats.go
index d79025a..bd91e20 100644
--- a/internal/stats/stats.go
+++ b/internal/stats/stats.go
@@ -29,6 +29,10 @@ var windowSeconds int64 = int64(defaultWindow.Seconds())
var errLockWouldBlock = errors.New("stats: lock would block")
+// nowFunc is the clock source for event timestamps and pruning cutoffs.
+// Replaced in tests to control time without sleeping.
+var nowFunc = time.Now
+
// SetWindow sets the sliding window used for pruning and aggregation.
func SetWindow(d time.Duration) {
if d < time.Second {
@@ -117,7 +121,7 @@ func Update(ctx context.Context, provider, model string, sentBytes, recvBytes in
path := filepath.Join(dir, fileName)
sf := readStatsFile(path)
- now := time.Now()
+ now := nowFunc()
win := Window()
sf.WindowSeconds = int(win.Seconds())
sf.Events = append(sf.Events, Event{
@@ -260,7 +264,7 @@ func TakeSnapshot() (Snapshot, error) {
if win <= 0 {
win = Window()
}
- cutoff := time.Now().Add(-win)
+ cutoff := nowFunc().Add(-win)
snap := Snapshot{Providers: make(map[string]ProviderEntry), Window: win}
for _, ev := range sf.Events {
if ev.TS.Before(cutoff) {