valueStore.add(gatherService.getBgwriterStats(host.id));
LOG.info("finished getting background writer data " + host.getName());
while (!valueStore.isEmpty()) {
BgwriterValue toStore = valueStore.get(0);
writerService.saveBgwriterStats(toStore);
valueStore.remove(0);
}
} catch (Exception e) {