increase stats freq to 1H (#16865)

This commit is contained in:
Sharon Katz
2025-01-29 15:08:44 -05:00
committed by GitHub
parent 87f58e9e46
commit b07d8bee6b
2 changed files with 2 additions and 1 deletions
@@ -0,0 +1 @@
* Raised the frequency of sending anonymous statistics from every 24 hours to every 1 hour. (This is a fairly small packet and should have no impact on network traffic)
+1 -1
View File
@@ -75,5 +75,5 @@ type HostsCountByOSVersion struct {
}
const (
StatisticsFrequency = time.Hour * 24
StatisticsFrequency = time.Hour * 1
)