HelixDataAccessor accessor = _manager.getHelixDataAccessor();
List<String> existingHealthRecordNames = accessor.getChildNames(accessor.keyBuilder().healthReports(_manager.getInstanceName()));
for(String healthReportName : existingHealthRecordNames)
{
LOG.info("Removing old healthrecord " + healthReportName);
accessor.removeProperty(accessor.keyBuilder().healthReport(_manager.getInstanceName(),healthReportName));
}
_timer = new Timer(true);
_timer.scheduleAtFixedRate(this, new Random().nextInt(_delay), _period);
}