long[] times = new long[repeats];
int[] nbcs = new int[repeats];
int count = 0;
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++) {