Skip to content

Commit

Permalink
parsed with gofmt
Browse files Browse the repository at this point in the history
closes #776
  • Loading branch information
prune998 authored and sparrc committed Mar 7, 2016
1 parent 0060df9 commit bd3d0c3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
- [#778](https://github.com/influxdata/telegraf/pull/778): Adding a TCP input listener.
- [#797](https://github.com/influxdata/telegraf/issues/797): Provide option for persistent MQTT consumer client sessions.
- [#799](https://github.com/influxdata/telegraf/pull/799): Add number of threads for procstat input plugin. Thanks @titilambert!
- [#776](https://github.com/influxdata/telegraf/pull/776): Add Zookeeper chroot option to kafka_consumer. Thanks @prune998!

### Bugfixes
- [#748](https://github.com/influxdata/telegraf/issues/748): Fix sensor plugin split on ":"
Expand Down
8 changes: 4 additions & 4 deletions plugins/inputs/kafka_consumer/kafka_consumer.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ import (
)

type Kafka struct {
ConsumerGroup string
Topics []string
ZookeeperPeers []string
ConsumerGroup string
Topics []string
ZookeeperPeers []string
ZookeeperChroot string
Consumer *consumergroup.ConsumerGroup
Consumer *consumergroup.ConsumerGroup

// Legacy metric buffer support
MetricBuffer int
Expand Down

0 comments on commit bd3d0c3

Please sign in to comment.