Example usage for org.apache.zookeeper ServerAdminClient stat

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

Introduction

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

Prototype

public static void stat(String host, int port) 

Source Link

Usage

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

License:Apache License

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