private Metric newMetric(String type, String name, long timestamp, String status, String data) {
DefaultMetric metric = new DefaultMetric(type, name);
metric.setStatus(status);
metric.addData(data);
metric.setTimestamp(timestamp);
return metric;
}
private Heartbeat newHeartbeat(String type, String name, long timestamp, String status, String data) {