2018-03-29 19:42:25 +00:00
|
|
|
## Zookeeper Input Plugin
|
2015-10-14 02:01:07 +00:00
|
|
|
|
|
|
|
The zookeeper plugin collects variables outputted from the 'mntr' command
|
|
|
|
[Zookeeper Admin](https://zookeeper.apache.org/doc/trunk/zookeeperAdmin.html).
|
|
|
|
|
2018-03-29 19:42:25 +00:00
|
|
|
### Configuration
|
2015-10-14 02:01:07 +00:00
|
|
|
|
2018-03-29 19:42:25 +00:00
|
|
|
```toml
|
2016-08-10 21:58:47 +00:00
|
|
|
# Reads 'mntr' stats from one or many zookeeper servers
|
|
|
|
[[inputs.zookeeper]]
|
|
|
|
## An array of address to gather stats about. Specify an ip or hostname
|
|
|
|
## with port. ie localhost:2181, 10.0.0.1:2181, etc.
|
2015-10-14 02:01:07 +00:00
|
|
|
|
2016-08-10 21:58:47 +00:00
|
|
|
## If no servers are specified, then localhost is used as the host.
|
|
|
|
## If no port is specified, 2181 is used
|
|
|
|
servers = [":2181"]
|
2018-03-29 19:42:25 +00:00
|
|
|
|
|
|
|
## Timeout for metric collections from all servers. Minimum timeout is "1s".
|
|
|
|
# timeout = "5s"
|
|
|
|
|
2018-05-04 23:33:23 +00:00
|
|
|
## Optional TLS Config
|
2018-03-29 19:42:25 +00:00
|
|
|
# enable_ssl = true
|
2018-05-04 23:33:23 +00:00
|
|
|
# tls_ca = "/etc/telegraf/ca.pem"
|
|
|
|
# tls_cert = "/etc/telegraf/cert.pem"
|
|
|
|
# tls_key = "/etc/telegraf/key.pem"
|
2018-03-29 19:42:25 +00:00
|
|
|
## If false, skip chain & host verification
|
|
|
|
# insecure_skip_verify = true
|
2016-08-10 21:58:47 +00:00
|
|
|
```
|
2016-07-16 18:19:21 +00:00
|
|
|
|
2018-03-29 19:42:25 +00:00
|
|
|
### Metrics:
|
2016-07-16 18:19:21 +00:00
|
|
|
|
2018-03-29 19:42:25 +00:00
|
|
|
Exact field names are based on Zookeeper response and may vary between
|
|
|
|
configuration, platform, and version.
|
|
|
|
|
|
|
|
- zookeeper
|
|
|
|
- tags:
|
|
|
|
- server
|
|
|
|
- port
|
|
|
|
- state
|
|
|
|
- fields:
|
|
|
|
- approximate_data_size (integer)
|
|
|
|
- avg_latency (integer)
|
|
|
|
- ephemerals_count (integer)
|
|
|
|
- max_file_descriptor_count (integer)
|
|
|
|
- max_latency (integer)
|
|
|
|
- min_latency (integer)
|
|
|
|
- num_alive_connections (integer)
|
|
|
|
- open_file_descriptor_count (integer)
|
|
|
|
- outstanding_requests (integer)
|
|
|
|
- packets_received (integer)
|
|
|
|
- packets_sent (integer)
|
|
|
|
- version (string)
|
|
|
|
- watch_count (integer)
|
|
|
|
- znode_count (integer)
|
|
|
|
- followers (integer, leader only)
|
|
|
|
- synced_followers (integer, leader only)
|
|
|
|
- pending_syncs (integer, leader only)
|
|
|
|
|
|
|
|
### Debugging:
|
|
|
|
|
|
|
|
If you have any issues please check the direct Zookeeper output using netcat:
|
|
|
|
```sh
|
|
|
|
$ echo mntr | nc localhost 2181
|
|
|
|
zk_version 3.4.9-3--1, built on Thu, 01 Jun 2017 16:26:44 -0700
|
|
|
|
zk_avg_latency 0
|
|
|
|
zk_max_latency 0
|
|
|
|
zk_min_latency 0
|
|
|
|
zk_packets_received 8
|
|
|
|
zk_packets_sent 7
|
|
|
|
zk_num_alive_connections 1
|
|
|
|
zk_outstanding_requests 0
|
|
|
|
zk_server_state standalone
|
|
|
|
zk_znode_count 129
|
|
|
|
zk_watch_count 0
|
|
|
|
zk_ephemerals_count 0
|
|
|
|
zk_approximate_data_size 10044
|
|
|
|
zk_open_file_descriptor_count 44
|
|
|
|
zk_max_file_descriptor_count 4096
|
|
|
|
```
|
|
|
|
|
|
|
|
### Example Output
|
|
|
|
|
|
|
|
```
|
|
|
|
zookeeper,server=localhost,port=2181,state=standalone ephemerals_count=0i,approximate_data_size=10044i,open_file_descriptor_count=44i,max_latency=0i,packets_received=7i,outstanding_requests=0i,znode_count=129i,max_file_descriptor_count=4096i,version="3.4.9-3--1",avg_latency=0i,packets_sent=6i,num_alive_connections=1i,watch_count=0i,min_latency=0i 1522351112000000000
|
2016-08-10 21:58:47 +00:00
|
|
|
```
|