in harness/src/main/java/org/apache/geode/perftest/analysis/BenchmarkRunResult.java [35:49]
public void writeResult(Writer output) throws IOException {
PrintWriter stream = new PrintWriter(output);
for (BenchmarkResult benchmarkResult : benchmarkResults) {
stream.println(benchmarkResult.name);
for (ProbeResult probeResult : benchmarkResult.probeResults) {
stream.print(String.format(" %30s", probeResult.description));
stream.print(String.format(" Baseline: %12.2f", probeResult.baseline));
stream.print(String.format(" Test: %12.2f", probeResult.test));
stream.print(String.format(" Difference: %+6.1f%%", probeResult.getDifference() * 100));
stream.println();
}
}
output.flush();
}