// thus giving the chart nice plunge to zero indicating downtime
//
// and lets not bother about rotating stats;
// regular stats collection cycle will do it
for (Iterator it = stats.keySet().iterator(); it.hasNext();) {
List l = (List) stats.get(it.next());
if (l.size() > 0) {
XYDataItem xy = (XYDataItem) l.get(l.size() - 1);
l.add(new XYDataItem(xy.getX().longValue() + 1, 0));
l.add(new XYDataItem(System.currentTimeMillis(), 0));