Skip to content

Commit

Permalink
Fix syntax error in cloudwatch sample config (#5797)
Browse files Browse the repository at this point in the history
  • Loading branch information
the-smooth-operator authored and danielnelson committed May 3, 2019
1 parent 6a73ad5 commit bae7f59
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions plugins/inputs/cloudwatch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ API endpoint. In the following order the plugin will attempt to authenticate.

## Namespace-wide statistic filters. These allow fewer queries to be made to
## cloudwatch.
# statistic_include = [ "average", "sum", minimum", "maximum", sample_count" ]
# statistic_include = [ "average", "sum", "minimum", "maximum", sample_count" ]
# statistic_exclude = []

## Metrics to Pull
Expand All @@ -83,7 +83,7 @@ API endpoint. In the following order the plugin will attempt to authenticate.
#
# ## Statistic filters for Metric. These allow for retrieving specific
# ## statistics for an individual metric.
# # statistic_include = [ "average", "sum", minimum", "maximum", sample_count" ]
# # statistic_include = [ "average", "sum", "minimum", "maximum", sample_count" ]
# # statistic_exclude = []
#
# ## Dimension filters for Metric. All dimensions defined for the metric names
Expand Down
4 changes: 2 additions & 2 deletions plugins/inputs/cloudwatch/cloudwatch.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ func (c *CloudWatch) SampleConfig() string {
## Namespace-wide statistic filters. These allow fewer queries to be made to
## cloudwatch.
# statistic_include = [ "average", "sum", minimum", "maximum", sample_count" ]
# statistic_include = [ "average", "sum", "minimum", "maximum", sample_count" ]
# statistic_exclude = []
## Metrics to Pull
Expand All @@ -146,7 +146,7 @@ func (c *CloudWatch) SampleConfig() string {
#
# ## Statistic filters for Metric. These allow for retrieving specific
# ## statistics for an individual metric.
# # statistic_include = [ "average", "sum", minimum", "maximum", sample_count" ]
# # statistic_include = [ "average", "sum", "minimum", "maximum", sample_count" ]
# # statistic_exclude = []
#
# ## Dimension filters for Metric. All dimensions defined for the metric names
Expand Down

0 comments on commit bae7f59

Please sign in to comment.