Created
January 22, 2018 09:55
-
-
Save aludwiko/726282ba9993d65a81c9bb941910c9b9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def printHdrHistogram(times: Seq[Int]) = { | |
| val histogram = new Histogram(1000000, 0) | |
| times.map(time => histogram.recordValue(time)) | |
| histogram.outputPercentileDistribution(System.out, 1, 1.0) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment