From cb386de4c7bbdfe6b0e0b019c60fb2bf09693c99 Mon Sep 17 00:00:00 2001 From: Alex Grintsvayg Date: Tue, 4 Sep 2018 09:49:54 -0400 Subject: [PATCH] bump stat freq to 1 hour --- cmd/reflector.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/reflector.go b/cmd/reflector.go index d806daf..5cc572c 100644 --- a/cmd/reflector.go +++ b/cmd/reflector.go @@ -40,7 +40,7 @@ func reflectorCmd(cmd *cobra.Command, args []string) { reflectorServer.Timeout = 30 * time.Second if globalConfig.SlackHookURL != "" { reflectorServer.StatLogger = log.StandardLogger() - reflectorServer.StatReportFrequency = 10 * time.Minute + reflectorServer.StatReportFrequency = 1 * time.Hour } err = reflectorServer.Start(":" + strconv.Itoa(reflector.DefaultPort))