Package com.alipay.bluewhale.core.cluster

Examples of com.alipay.bluewhale.core.cluster.StormClusterState.supervisor_info()


    List<String> list=stat.supervisors(null);
    for(String supervisor:list)
    {
      SupervisorContainer container=new SupervisorContainer();
      container.setName(supervisor);
      SupervisorInfo info=stat.supervisor_info(supervisor);
      container.setInfo(info);
      StringBuffer buff=new StringBuffer();
      buff.append("机器域名:"+info.getHostName()+"<br>");
      buff.append("机器id:"+supervisor+"<br>");
      buff.append("启动的端口号:"+info.getWorkPorts().toString()+"<br>");
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.