openzipkin-contrib / play-zipkin-tracing

Provides distributed tracing for Play Framework and Akka using Zipkin.
Apache License 2.0
48 stars 19 forks source link

Tracing akka actor selection #57

Open ykhilaji opened 3 years ago

ykhilaji commented 3 years ago

Hello,

does zipking allow you to trace an actor selection,

example; val jobManagerSupervisorPath: ActorPath = actorSystem.child(JobManagerSupervisor.Name) al jobManagerSupervisorSelection: ActorSelection = actorSystem.actorSelection(jobManagerSupervisorPath) TraceableActorRef(jobManagerSupervisorSelection) ! CreateImportJobActor(response.jobId, request.userId)

Thnx