Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Configurable basicstats #3580

Merged
merged 3 commits into from
Dec 15, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Simplifying 'Unrecognized basic stat' message
  • Loading branch information
JeffAshton committed Dec 13, 2017
commit f8993fc10cde6d6e87e66f288de84bc77dd1c3cf
2 changes: 1 addition & 1 deletion plugins/aggregators/basicstats/basicstats.go
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ func parseStats(names []string) *configuredStats {
parsed.stdev = true

default:
log.Printf("W! Unrecognized basic stat '[%s]', ignoring", name)
log.Printf("W! Unrecognized basic stat '%s', ignoring", name)
Copy link
Contributor Author

@JeffAshton JeffAshton Dec 13, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sample output:

2017-12-13T23:09:30Z W! Unrecognized basic stat '[wacky]', ignoring

}
}

Expand Down