Example usage for org.apache.zookeeper ServerAdminClient dump

List of usage examples for org.apache.zookeeper ServerAdminClient dump

Introduction

In this page you can find the example usage for org.apache.zookeeper ServerAdminClient dump.

Prototype

public static void dump(String host, int port) 

Source Link

Usage

From source file:org.fusesource.ide.zk.zookeeper.data.ZooKeeperServer.java

License:Apache License

public String dump() {
    Stoppable outputCatcher = startOutputCatcher();
    ServerAdminClient.dump(_Descriptor.getHost(), _Descriptor.getPort());
    return outputCatcher.stop();
}