From b07d8bee6b60ba7588c47fb5178d5d5385dbf136 Mon Sep 17 00:00:00 2001 From: Sharon Katz <121527325+sharon-fdm@users.noreply.github.com> Date: Wed, 29 Jan 2025 15:08:44 -0500 Subject: [PATCH] increase stats freq to 1H (#16865) --- changes/16865-increase-statistics-frequency | 1 + server/fleet/statistics.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 changes/16865-increase-statistics-frequency diff --git a/changes/16865-increase-statistics-frequency b/changes/16865-increase-statistics-frequency new file mode 100644 index 0000000000..36b323d1e4 --- /dev/null +++ b/changes/16865-increase-statistics-frequency @@ -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) diff --git a/server/fleet/statistics.go b/server/fleet/statistics.go index 21836e16d9..18a9403480 100644 --- a/server/fleet/statistics.go +++ b/server/fleet/statistics.go @@ -75,5 +75,5 @@ type HostsCountByOSVersion struct { } const ( - StatisticsFrequency = time.Hour * 24 + StatisticsFrequency = time.Hour * 1 )