From ae1f6f43962a0805bcb3fde4fc83cad0aae66e84 Mon Sep 17 00:00:00 2001 From: Sharon Katz <121527325+sharon-fdm@users.noreply.github.com> Date: Thu, 1 Jun 2023 09:40:42 -0400 Subject: [PATCH] step 1 double the freq from once a week to once every 3days (#11769) Increase the statistics report frequency from once a week to once in 3 days. The idea is to double it in slow steps to make sure the Heroku can withstand it. Goal is to get to once every few hours. --- server/fleet/statistics.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/fleet/statistics.go b/server/fleet/statistics.go index 9f0e69b557..4e3e77fa7c 100644 --- a/server/fleet/statistics.go +++ b/server/fleet/statistics.go @@ -54,5 +54,5 @@ type HostsCountByOSVersion struct { } const ( - StatisticsFrequency = time.Hour * 24 * 7 + StatisticsFrequency = time.Hour * 24 * 3 )