How to use AspectJ to profile lambda functions in Java Play Framework 2.5.x?

116 Views Asked by At

I have a Java application built using Play 2.5x. I am using AspectJ with Kamon to profile methods in my selected packages, and am reporting the execution details in Jaeger. It works fine with synchronous methods but fails when it comes to reporting asynchronous ones. For example, if I have a thenApply block which is executed after a future completes, then I cannot profile the lambda inside the thenApply in the current scheme of things. I do not want to add any extra code to my Play app and want the aspect to take care of the profiling. Any help will be greatly appreciated :)

0

There are 0 best solutions below