M80
M80

Reputation: 994

Apache ZooKeeper WEB-UI

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

Answers (7)

elkozmon
elkozmon

Reputation: 301

Yes there is. ZooNavigator is a web app that enables you to browse and edit data in ZooKeeper.

Upvotes: 19

Dave
Dave

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

Night Owl
Night Owl

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.

Admin Server Documentation

Admin Server Configuration

Upvotes: 8

user9292616
user9292616

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

Chuanyu Ban
Chuanyu Ban

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

Kombajn zbożowy
Kombajn zbożowy

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

BruceWayne
BruceWayne

Reputation: 3374

zk-web is a git project that will help you. Check below link for more

zk-web

Upvotes: 3

Related Questions