I am trying to apply Openzipkin Brave to an application to help log tracing using Logback. The application is a spring webmvc application and it uses ForkJoinPool.
Tracing in the main thread (spring webmvc part) is working, but I have difficulties on passing the trace context to the ForkJoinThread. In my understanding, trace context is stored in threadlocal, which obviously is not accessible by ForkJoinWorkerThread (or ForkJoinTask). I wonder how I can make it work.