Add Kafka input to telegraf config

Change-Id: I9a8d3dc5f311d4ea4e5d9b03d522632abc66a7ac
This commit is contained in:
pangliye 2019-05-24 10:40:59 +08:00 committed by Michal Nasiadka
parent 1c866201e3
commit 93e868360d
1 changed files with 4 additions and 0 deletions

View File

@ -84,6 +84,10 @@
[[inputs.zookeeper]]
servers = ["{{ api_interface_address }}:{{ zookeeper_port }}"]
{% endif %}
{% if inventory_hostname in groups['kafka'] and enable_kafka | bool %}
[[inputs.kafka_consumer]]
brokers = ["{{ api_interface_address }}:{{ kafka_port }}"]
{% endif %}
{% if inventory_hostname in groups['mariadb'] and (enable_mariadb or enable_external_mariadb_load_balancer) | bool %}
[[inputs.mysql]]
servers = ["{{ database_user }}:{{ database_password }}@{{ mariadb_proto }}({{ api_interface_address }}:{{ database_port }})/"]