Closed Akrome closed 7 years ago
Sorry for late response.
The message you are referring to is supposed to be local and, therefore, not serialized. So it seems that your akka system is serializing all messages (most likely due to akka.actor.serialize-messages = on
).
You are right, I had that enabled. I don't have access to the codebase for testing it now, but most likely that was the cause.
Hi. I'm having issues reproducing the basic level of tracing within my project. I'm using Akka 2.4.11 's Java API, and the 0.6 version of the library from maven.
Right after I call trace.finish(), I receive this StackTrace and no message reaches Zipkin (Zipkin is configured correctly since it works with the activator example):
This is my current config section for tracing and serializers:
The last line I reach inside the library is line 327 of TracingExtension.scala:
holder ! Sample(initialAnnotation, tracingId, m, service, rpc, System.nanoTime)
where the initialAnnotation is ServerReceived.
Any help on how to configure the serializers for this to work?