Skip to content

Commit

Permalink
chore: update default mtu config
Browse files Browse the repository at this point in the history
  • Loading branch information
mihir20 committed Jul 11, 2024
1 parent 853b252 commit 3cb1687
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions enterprise/trackedusers/users_reporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@ func NewUniqueUsersReporter(log logger.Logger, conf *config.Config, stats stats.
return &UniqueUsersReporter{
log: log,
hllSettings: &hll.Settings{
Log2m: conf.GetInt("TrackedUsers.precision", 14),
Log2m: conf.GetInt("TrackedUsers.precision", 16),
Regwidth: conf.GetInt("TrackedUsers.registerWidth", 5),
ExplicitThreshold: hll.AutoExplicitThreshold,
SparseEnabled: true,
},
instanceID: config.GetString("INSTANCE_ID", "1"),
stats: stats,
now: func() time.Time {
return time.Now()
return time.Now().UTC()
},
}, nil
}
Expand Down

0 comments on commit 3cb1687

Please sign in to comment.