ExecutorBeanPostProcessor is always wrapping ExecutorServices with TracedExecutorService which has traceWithActiveSpanOnly property set by default to true.
public TracedExecutorService(ExecutorService delegate, Tracer tracer) {
this(delegate, tracer, true);
}
This is something which should be accessible by some property i guess.