Using Kamon in a scala play 2.6 project it seems that calls into play.core.server.AkkaHttpServer
are traced automatically via instrumentation added via aspect j.
Example
A route /blogposts/
is traced. But further calls inside e.g BlogPostService.getNewest and so on are not.
Question
How would one extend this tracing to other functions calls? Is it needed to create spans manually? Or can further classes and their function be added to tracing via a different mechanism (config, own aspects etc.)?