Last active
June 23, 2016 23:27
-
-
Save shehaaz/7ea265d8b43006d7b395a035c3479925 to your computer and use it in GitHub Desktop.
This file contains 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
val time = Latency.measure[Unit](Kamon.metrics.histogram("awesomeHistogram")) | |
time(printInt(5)) | |
Latency.measure(Kamon.metrics.histogram("awesomeHistogram"))(printInt(5)) | |
def printInt(num: Int): Unit = { | |
print(num) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment