diff --git a/changes/14824-NVD-work b/changes/14824-NVD-work new file mode 100644 index 0000000000..3bbc56282d --- /dev/null +++ b/changes/14824-NVD-work @@ -0,0 +1 @@ +* Increase the metrics report from Fleet servers from once every 3 days to once a day. diff --git a/server/fleet/statistics.go b/server/fleet/statistics.go index 4e3e77fa7c..76f18270e4 100644 --- a/server/fleet/statistics.go +++ b/server/fleet/statistics.go @@ -54,5 +54,5 @@ type HostsCountByOSVersion struct { } const ( - StatisticsFrequency = time.Hour * 24 * 3 + StatisticsFrequency = time.Hour * 24 )