Reputation: 994
Is there any web-interface to check the data (or tree) present in the zookeeper?
CLI is bit hard to get the complete picture of the tree and data.
Upvotes: 13
Views: 76638
Reputation: 301
Yes there is. ZooNavigator is a web app that enables you to browse and edit data in ZooKeeper.
Upvotes: 19
Reputation: 3383
There is a Java app "Zooinspector" that allows browsing/creating nodes and view/edit data with syntax highlighting and code folding for XML etc, here: https://github.com/CycleMost/zooinspector
Upvotes: 0
Reputation: 4223
The upcoming Zookeeper 3.5.0 will have a built in "Admin Server" interface at localhost:8080. You may have to enable or configure it to get it running. As of 2017-01-30 the current/stable version is 3.4.9 and 3.5.0 is labeled as being "alpha".
Update: as of 2018-02-20 this feature still has't been released. It's now in 3.5.3 beta. The links have been updated but they may not remain active as the version number changes.
Upvotes: 8
Reputation: 21
Might be late to game, but found this if you want an easy way to view zookeeper data/stuff:
https://github.com/migcaraballo/inspectorZk-v1
Upvotes: 2
Reputation: 31
Maybe you can try this: https://github.com/XiaoMi/shepher
Features:
Visualized operation of ZooKeeper node
Snapshot management of ZooKeeper node
Modified Diff and Review function of ZooKeeper node
Mail operation notification of ZooKeeper node
CAS and LDAP integration
Upvotes: 3
Reputation: 10693
You can browse ZNode hierarchy from Hue (if configured properly). Check http://gethue.com/new-zookeeper-browser-app/ for demo video and some details on how to set it up.
Upvotes: 2
Reputation: 3374
zk-web is a git project that will help you. Check below link for more
Upvotes: 3