Skip to content

Commit

Permalink
Merge pull request #36 from tx0c/patch-1
Browse files Browse the repository at this point in the history
fix the typo of Wether => Whether
  • Loading branch information
caarlos0 committed Jul 25, 2019
2 parents 8de0bdd + bc18ace commit abac444
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ var (
couchbaseUsername = app.Flag("couchbase.username", "Couchbase username").String()
couchbasePassword = app.Flag("couchbase.password", "Couchbase password").OverrideDefaultFromEnvar("COUCHBASE_PASSWORD").String()

tasks = app.Flag("collectors.tasks", "Wether to collect tasks metrics").Default("true").Bool()
buckets = app.Flag("collectors.buckets", "Wether to collect buckets metrics").Default("true").Bool()
nodes = app.Flag("collectors.nodes", "Wether to collect nodes metrics").Default("true").Bool()
cluster = app.Flag("collectors.cluster", "Wether to collect cluster metrics").Default("true").Bool()
tasks = app.Flag("collectors.tasks", "Whether to collect tasks metrics").Default("true").Bool()
buckets = app.Flag("collectors.buckets", "Whether to collect buckets metrics").Default("true").Bool()
nodes = app.Flag("collectors.nodes", "Whether to collect nodes metrics").Default("true").Bool()
cluster = app.Flag("collectors.cluster", "Whether to collect cluster metrics").Default("true").Bool()
)

func main() {
Expand Down

0 comments on commit abac444

Please sign in to comment.