From 43d04f45e121ec7cc62efd111a4528153f61f915 Mon Sep 17 00:00:00 2001 From: Nathan Haneysmith Date: Tue, 20 Sep 2016 15:36:45 -0700 Subject: [PATCH] go fmt update --- plugins/inputs/cloudwatch/cloudwatch.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/plugins/inputs/cloudwatch/cloudwatch.go b/plugins/inputs/cloudwatch/cloudwatch.go index 09ed5e489..592c104f4 100644 --- a/plugins/inputs/cloudwatch/cloudwatch.go +++ b/plugins/inputs/cloudwatch/cloudwatch.go @@ -59,7 +59,6 @@ type ( ListMetrics(*cloudwatch.ListMetricsInput) (*cloudwatch.ListMetricsOutput, error) GetMetricStatistics(*cloudwatch.GetMetricStatisticsInput) (*cloudwatch.GetMetricStatisticsOutput, error) } - ) func (c *CloudWatch) SampleConfig() string { @@ -212,9 +211,9 @@ func init() { inputs.Add("cloudwatch", func() telegraf.Input { ttl, _ := time.ParseDuration("1hr") return &CloudWatch{ - CacheTTL: internal.Duration{Duration: ttl}, - RateLimit: 10, - CWInterval: internal.Duration{Duration: 0}, + CacheTTL: internal.Duration{Duration: ttl}, + RateLimit: 10, + CWInterval: internal.Duration{Duration: 0}, } }) }