|| topic.startsWith(MixAll.DLQ_GROUP_TOPIC_PREFIX)) {
continue;
}
String clusterName = "";
GroupList groupList = new GroupList();
try {
clusterName =
this.findTopicBelongToWhichCluster(topic, clusterInfo, defaultMQAdminExt);
groupList = defaultMQAdminExt.queryTopicConsumeByWho(topic);
}
catch (Exception e) {
}
if (null == groupList || groupList.getGroupList().isEmpty()) {
groupList = new GroupList();
groupList.getGroupList().add("");
}
for (String group : groupList.getGroupList()) {
System.out.printf("%-20s %-48s %-48s\n",//
UtilAll.frontStringAtLeast(clusterName, 20),//
UtilAll.frontStringAtLeast(topic, 48),//
UtilAll.frontStringAtLeast(group, 48)//
);