From b2670b2d599d6dbcda3ab93ea8cd23474f33ba8d Mon Sep 17 00:00:00 2001 From: Frank Schroeder Date: Fri, 19 May 2017 11:47:15 +0200 Subject: [PATCH] agent: fix comment --- command/agent/command.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/command/agent/command.go b/command/agent/command.go index 6bd99aaf1..4bc415e2d 100644 --- a/command/agent/command.go +++ b/command/agent/command.go @@ -713,10 +713,9 @@ func (c *Command) Run(args []string) int { // Setup the channel for triggering config reloads c.configReloadCh = make(chan chan error) - /* Setup telemetry - Aggregate on 10 second intervals for 1 minute. Expose the - metrics over stderr when there is a SIGUSR1 received. - */ + // Setup telemetry + // Aggregate on 10 second intervals for 1 minute. Expose the + // metrics over stderr when there is a SIGUSR1 received. inm := metrics.NewInmemSink(10*time.Second, time.Minute) metrics.DefaultInmemSignal(inm) metricsConf := metrics.DefaultConfig(config.Telemetry.StatsitePrefix)