play-zipkin-tracing icon indicating copy to clipboard operation
play-zipkin-tracing copied to clipboard

Provides distributed tracing for Play Framework and Akka using Zipkin.

Results 7 play-zipkin-tracing issues
Sort by recently updated
recently updated
newest added

To account for the case when `contextOrFlags.context() == null`

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

enhancement

This adds more information to the span used by TracedWSClient. I added a test, but instantiating another application seems to break `ZipkinModuleSpec`, which uses `Tracing.current`. Each test is green when...

I am getting the following error when using `play-zipkin-tracing`: ``` [info] java.lang.NullPointerException: context == null [info] at brave.Tracer.joinSpan(Tracer.java:185) [info] at brave.play.ZipkinTraceServiceLike.toSpan(ZipkinTraceServiceLike.scala:173) [info] at brave.play.ZipkinTraceServiceLike.toSpan$(ZipkinTraceServiceLike.scala:168) ``` `toSpan` uses `joinSpan` https://github.com/openzipkin-contrib/play-zipkin-tracing/blob/master/play-zipkin-tracing/core/src/main/scala/brave/play/ZipkinTraceServiceLike.scala#L168 But...

Hello all, I have no experience in Scala and an existing Play 2.6 project, completely in Java. Just wondering if examples in Java might be possible? I tried setting it...

Is it possible to use this library for akka-http tracing?

currently my play application uses finagle to communicate with other services. i would like to use the finaggle context in the tracer so that everything lines up. the problem is...