final Excerpt excerpt2 = chronicle.createExcerpt();
while (excerpt2.nextIndex()) {
final long timestamp = excerpt2.readLong();
long time = System.nanoTime() - timestamp;
times[count] = time;
final int nbConsolidates = excerpt2.readInt();
nbcs[count] = nbConsolidates;
for (int i = 0; i < nbConsolidates; i++) {
excerpt2.readInt();
}
excerpt2.finish();