System.out.printf("SP RW count: %,11d txns (%.2f%%)\n", sprwCount.get(), (sprwCount.get() * 100.0) / total);
System.out.printf("MP RO count: %,11d txns (%.2f%%)\n", mproCount.get(), (mproCount.get() * 100.0) / total);
System.out.printf("MP RW count: %,11d txns (%.2f%%)\n", mprwCount.get(), (mprwCount.get() * 100.0) / total);
System.out.printf("Average throughput: %,9d txns/sec\n", stats.getTxnThroughput());
System.out.printf("Average latency: %,9.2f ms\n", stats.getAverageLatency());
System.out.printf("95th percentile latency: %,9.2f ms\n", stats.kPercentileLatencyAsDouble(.95));
System.out.printf("99th percentile latency: %,9.2f ms\n", stats.kPercentileLatencyAsDouble(.99));
System.out.print("\n" + HORIZONTAL_RULE);
System.out.println(" System Server Statistics");
System.out.println(HORIZONTAL_RULE);