Skip to content
Snippets Groups Projects
Commit 6af7efe3 authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "Fix telegraf with zookeeper (wrong port variable reference)"

parents 8a206699 939b6f79
No related branches found
No related tags found
No related merge requests found
......@@ -83,7 +83,7 @@
{% endif %}
{% if inventory_hostname in groups['zookeeper'] and enable_zookeeper | bool %}
[[inputs.zookeeper]]
servers = ["{{ api_interface_address | put_address_in_context('url') }}:{{ zookeeper_port }}"]
servers = ["{{ api_interface_address | put_address_in_context('url') }}:{{ zookeeper_client_port }}"]
{% endif %}
{% if inventory_hostname in groups['kafka'] and enable_kafka | bool %}
[[inputs.kafka_consumer]]
......
---
fixes:
- |
Fixes failure to deploy telegraf with monitoring of zookeeper due
to wrong variable being referenced.
`LP#1867179 <https://launchpad.net/bugs/1867179>`__
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment