Skip to content

Commit

Permalink
Add Zookeeper Jolokia2 example config (influxdata#4659)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse-Cameron authored and otherpirate committed Mar 15, 2019
1 parent 87d0e1e commit ffc4648
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions plugins/inputs/jolokia2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,5 +181,6 @@ Both `jolokia2_agent` and `jolokia2_proxy` plugins support default configuration
- [Kafka](/plugins/inputs/jolokia2/examples/kafka.conf)
- [Tomcat](/plugins/inputs/jolokia2/examples/tomcat.conf)
- [Weblogic](/plugins/inputs/jolokia2/examples/weblogic.conf)
- [ZooKeeper](/plugins/inputs/jolokia2/examples/zookeeper.conf)

Please help improve this list and contribute new configuration files by opening an issue or pull request.
18 changes: 18 additions & 0 deletions plugins/inputs/jolokia2/examples/zookeeper.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[[inputs.jolokia2_agent]]
urls = ["http://localhost:8080/jolokia"]
name_prefix = "zk_"

[[inputs.jolokia2_agent.metrics]]
name = "quorum"
mbean = "org.apache.ZooKeeperService:name0=*"
tag_keys = ["name0"]

[[inputs.jolokia2_agent.metrics]]
name = "leader"
mbean = "org.apache.ZooKeeperService:name0=*,name1=*,name2=Leader"
tag_keys = ["name1"]

[[inputs.jolokia2_agent.metrics]]
name = "follower"
mbean = "org.apache.ZooKeeperService:name0=*,name1=*,name2=Follower"
tag_keys = ["name1"]

0 comments on commit ffc4648

Please sign in to comment.