Default to localhost if zookeeper has no servers set (#3056)

This commit is contained in:
Daniel Nelson 2017-07-25 17:08:32 -07:00 committed by GitHub
parent a26fc52181
commit 0ca936a12e
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ func (z *Zookeeper) Description() string {
// Gather reads stats from all configured servers accumulates stats
func (z *Zookeeper) Gather(acc telegraf.Accumulator) error {
if len(z.Servers) == 0 {
return nil
z.Servers = []string{":2181"}
}
for _, serverAddress := range z.Servers {