Akka instrumentation doesn't work in Java 17 application? #1378
Unanswered
vitalkrasilnikau2
asked this question in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I have Java 17 gRPC application with Akka 2.9.5 running inside. I implemented gRPC trace interceptor to create Kamon context and root span and also implemented manual context propagation for completable futures with Kamon bundle v2.7.4 for Scala 2.13. It looks good except Akka cluster part. It seems like Akka instrumentation doesn't work and the context is not propagated into Akka world. Kamon Status Page shows both Akka and Akka Remote modules installed.
I tried different filters
but no success.
This is an example of context propagation for completable futures.
And this is Akka entity ask call which do not propagate the context to Akka. The proper context is established in
getStreamsPage
function and I can see the span forGetStreamsPageAsk
in Jaeger but not spans for actor messages.Is there something missing? Thanks.
Beta Was this translation helpful? Give feedback.
All reactions