}
}
private void printProxyHistograms(PrintStream output)
{
StorageProxyMBean sp = this.probe.getSpProxy();
long[] offsets = new EstimatedHistogram().getBucketOffsets();
long[] rrlh = sp.getRecentReadLatencyHistogramMicros();
long[] rwlh = sp.getRecentWriteLatencyHistogramMicros();
long[] rrnglh = sp.getRecentRangeLatencyHistogramMicros();
output.println("proxy histograms");
output.println(String.format("%-10s%18s%18s%18s",
"Offset", "Read Latency", "Write Latency", "Range Latency"));
for (int i = 0; i < offsets.length; i++)