Skip to content

Instantly share code, notes, and snippets.

@aludwiko
Created January 22, 2018 09:55
Show Gist options
  • Select an option

  • Save aludwiko/726282ba9993d65a81c9bb941910c9b9 to your computer and use it in GitHub Desktop.

Select an option

Save aludwiko/726282ba9993d65a81c9bb941910c9b9 to your computer and use it in GitHub Desktop.
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