Scala - Amazon CodeGuru Profiler (original) (raw)
Scala - Amazon CodeGuru Profiler
You can add support for the CodeGuru Profiler agent into your Scala application by adding the following lines into your startup or main
function.
import software.amazon.codeguruprofilerjavaagent.Profiler
object MyObject {
def main(args: Array[String]) = {
Profiler.builder()
.profilingGroupName("MyProfilingGroup")
.build()
.start()
...
}
}
you need to add a dependency to the agent .jar file.
Did this page help you? - Yes
Thanks for letting us know we're doing a good job!
If you've got a moment, please tell us what we did right so we can do more of it.
Did this page help you? - No
Thanks for letting us know this page needs work. We're sorry we let you down.
If you've got a moment, please tell us how we can make the documentation better.