diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d4d74ff21dcf..b210ea4961fa8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ time before a new metric is included by the plugin. - [#1264](https://github.com/influxdata/telegraf/pull/1264): Add SSL config options to http_response plugin. - [#1272](https://github.com/influxdata/telegraf/pull/1272): graphite parser: add ability to specify multiple tag keys, for consistency with influxdb parser. - [#1265](https://github.com/influxdata/telegraf/pull/1265): Make dns lookups for chrony configurable. Thanks @zbindenren! +- [#1278](https://github.com/influxdata/telegraf/pull/1278): RabbitMQ input: made url parameter optional by using DefaultURL (http://localhost:15672) if not specified ### Bugfixes diff --git a/etc/telegraf.conf b/etc/telegraf.conf index c5d631f5177bd..05f47e8610f5d 100644 --- a/etc/telegraf.conf +++ b/etc/telegraf.conf @@ -1176,7 +1176,7 @@ # # Read metrics from one or many RabbitMQ servers via the management API # [[inputs.rabbitmq]] -# url = "http://localhost:15672" # required +# # url = "http://localhost:15672" # # name = "rmq-server-1" # optional tag # # username = "guest" # # password = "guest" diff --git a/plugins/inputs/rabbitmq/rabbitmq.go b/plugins/inputs/rabbitmq/rabbitmq.go index 4d119282dc21d..bf68590024609 100644 --- a/plugins/inputs/rabbitmq/rabbitmq.go +++ b/plugins/inputs/rabbitmq/rabbitmq.go @@ -102,7 +102,7 @@ type gatherFunc func(r *RabbitMQ, acc telegraf.Accumulator, errChan chan error) var gatherFunctions = []gatherFunc{gatherOverview, gatherNodes, gatherQueues} var sampleConfig = ` - url = "http://localhost:15672" # required + # url = "http://localhost:15672" # name = "rmq-server-1" # optional tag # username = "guest" # password = "guest" @@ -146,6 +146,9 @@ func (r *RabbitMQ) Gather(acc telegraf.Accumulator) error { } func (r *RabbitMQ) requestJSON(u string, target interface{}) error { + if r.URL == "" { + r.URL = DefaultURL + } u = fmt.Sprintf("%s%s", r.URL, u) req, err := http.NewRequest("GET", u, nil)