We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable the input only with [[inputs.zookeeper]] doesn't collect any statistics
[[inputs.zookeeper]]
Centos 7.3, telegraf 1.2.1
telegraf --test --config /etc/telegraf/telegraf.conf --config-directory /etc/telegraf/telegraf.d --input-filter zookeeper
Input to provide collection for zookeeper on localhost when there is no servers specified.
servers
[root@zookeeper01~]# telegraf --test --config /etc/telegraf/telegraf.conf --config-directory /etc/telegraf/telegraf.d --input-filter zookeeper * Plugin: inputs.zookeeper, Collection 1
According to documentation (at least the way I read it), servers parameter seems optional and would use localhost:2181.
With simple input configured, zookeeper collection would start on localhost. This is what most input plugins works.
Workaround is fairly easy, specify servers = [":2181"]
servers = [":2181"]
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Directions
Bug report
Enable the input only with
[[inputs.zookeeper]]
doesn't collect any statisticsRelevant telegraf.conf:
System info:
Centos 7.3, telegraf 1.2.1
Steps to reproduce:
telegraf --test --config /etc/telegraf/telegraf.conf --config-directory /etc/telegraf/telegraf.d --input-filter zookeeper
Expected behavior:
Input to provide collection for zookeeper on localhost when there is no
servers
specified.Actual behavior:
Additional info:
Proposal:
Current behavior:
According to documentation (at least the way I read it),
servers
parameter seems optional and would use localhost:2181.Desired behavior:
With simple input configured, zookeeper collection would start on localhost. This is what most input plugins works.
Use case: [Why is this important (helps with prioritizing requests)]
Workaround is fairly easy, specify
servers = [":2181"]
The text was updated successfully, but these errors were encountered: