use of com.alibaba.cobar.heartbeat.MySQLHeartbeat in project cobar by alibaba.
the class ShowBackend method getRow.
private static RowDataPacket getRow(BackendConnection c, String charset) {
RowDataPacket row = new RowDataPacket(FIELD_COUNT);
row.add(c.getProcessor().getName().getBytes());
row.add(LongUtil.toBytes(c.getId()));
row.add(StringUtil.encode(c.getHost(), charset));
row.add(IntegerUtil.toBytes(c.getPort()));
row.add(IntegerUtil.toBytes(c.getLocalPort()));
row.add(LongUtil.toBytes(c.getNetInBytes()));
row.add(LongUtil.toBytes(c.getNetOutBytes()));
row.add(LongUtil.toBytes((TimeUtil.currentTimeMillis() - c.getStartupTime()) / 1000L));
row.add(c.isClosed() ? "true".getBytes() : "false".getBytes());
if (c instanceof CobarDetector) {
CobarDetector detector = (CobarDetector) c;
CobarHeartbeat heartbeat = detector.getHeartbeat();
row.add(detector.isAuthenticated() ? "true".getBytes() : "false".getBytes());
row.add(detector.isQuit() ? "true".getBytes() : "false".getBytes());
row.add(heartbeat.isChecking() ? "true".getBytes() : "false".getBytes());
row.add(heartbeat.isStop() ? "true".getBytes() : "false".getBytes());
row.add(LongUtil.toBytes(heartbeat.getStatus()));
} else if (c instanceof MySQLDetector) {
MySQLDetector detector = (MySQLDetector) c;
MySQLHeartbeat heartbeat = detector.getHeartbeat();
row.add(detector.isAuthenticated() ? "true".getBytes() : "false".getBytes());
row.add(detector.isQuit() ? "true".getBytes() : "false".getBytes());
row.add(heartbeat.isChecking() ? "true".getBytes() : "false".getBytes());
row.add(heartbeat.isStop() ? "true".getBytes() : "false".getBytes());
row.add(LongUtil.toBytes(heartbeat.getStatus()));
} else {
row.add(null);
row.add(null);
row.add(null);
row.add(null);
row.add(null);
}
return row;
}
use of com.alibaba.cobar.heartbeat.MySQLHeartbeat in project cobar by alibaba.
the class ShowHeartbeat method getRows.
private static List<RowDataPacket> getRows() {
List<RowDataPacket> list = new LinkedList<RowDataPacket>();
CobarConfig conf = CobarServer.getInstance().getConfig();
// cobar nodes
Map<String, CobarNode> cobarNodes = conf.getCluster().getNodes();
List<String> cobarNodeKeys = new ArrayList<String>(cobarNodes.size());
cobarNodeKeys.addAll(cobarNodes.keySet());
Collections.sort(cobarNodeKeys);
for (String key : cobarNodeKeys) {
CobarNode node = cobarNodes.get(key);
if (node != null) {
CobarHeartbeat hb = node.getHeartbeat();
RowDataPacket row = new RowDataPacket(FIELD_COUNT);
row.add(node.getName().getBytes());
row.add("COBAR".getBytes());
row.add(node.getConfig().getHost().getBytes());
row.add(IntegerUtil.toBytes(node.getConfig().getPort()));
row.add(IntegerUtil.toBytes(hb.getStatus()));
row.add(IntegerUtil.toBytes(hb.getErrorCount()));
row.add(hb.isChecking() ? "checking".getBytes() : "idle".getBytes());
row.add(LongUtil.toBytes(hb.getTimeout()));
row.add(hb.getRecorder().get().getBytes());
String at = hb.lastActiveTime();
row.add(at == null ? null : at.getBytes());
row.add(hb.isStop() ? "true".getBytes() : "false".getBytes());
list.add(row);
}
}
// data nodes
Map<String, MySQLDataNode> dataNodes = conf.getDataNodes();
List<String> dataNodeKeys = new ArrayList<String>(dataNodes.size());
dataNodeKeys.addAll(dataNodes.keySet());
Collections.sort(dataNodeKeys, new Comparators<String>());
for (String key : dataNodeKeys) {
MySQLDataNode node = dataNodes.get(key);
if (node != null) {
MySQLHeartbeat hb = node.getHeartbeat();
RowDataPacket row = new RowDataPacket(FIELD_COUNT);
row.add(node.getName().getBytes());
row.add("MYSQL".getBytes());
if (hb != null) {
row.add(hb.getSource().getConfig().getHost().getBytes());
row.add(IntegerUtil.toBytes(hb.getSource().getConfig().getPort()));
row.add(IntegerUtil.toBytes(hb.getStatus()));
row.add(IntegerUtil.toBytes(hb.getErrorCount()));
row.add(hb.isChecking() ? "checking".getBytes() : "idle".getBytes());
row.add(LongUtil.toBytes(hb.getTimeout()));
row.add(hb.getRecorder().get().getBytes());
String lat = hb.getLastActiveTime();
row.add(lat == null ? null : lat.getBytes());
row.add(hb.isStop() ? "true".getBytes() : "false".getBytes());
} else {
row.add(null);
row.add(null);
row.add(null);
row.add(null);
row.add(null);
row.add(null);
row.add(null);
row.add(null);
row.add(null);
}
list.add(row);
}
}
return list;
}
Aggregations