I'm using rxjava observables (v 1.1.8) in my play framework (with akka) application. I'd like to know if there's a way to propagate MDC info to rxjava Observables. I don't see MDC info in my log statements which get printed within Observable/Subscriber. I understand rxJava uses separate thread pool and there needs to be a mechanism to copy MDC info from akka threads into rxjava threads. Is there a solution for this ?
FYI,within akka actors I'm achieving MDC propagation using lightbends cinnamon plugin (http://developer.lightbend.com/docs/monitoring/latest/extensions/mdc.html)