tab.addCell("Out-Count");
tab.addCell("Out-Bytes");
for(Map.Entry<String, ExchangeMetric> e : ExchangeMetric.exchangeStat.entrySet()) {
ExchangeMetric info = e.getValue();
tab.addCell(e.getKey());
tab.addCell(String.valueOf(info.getMessageInCount()), numberStyle);
tab.addCell(String.valueOf(info.getMessageInBytes()), numberStyle);
tab.addCell(String.valueOf(info.getMessageOutCount()), numberStyle);
tab.addCell(String.valueOf(info.getMessageOutBytes()), numberStyle);
}
strOut.write(tab.render() + "\n");