Replies: 1 comment
-
hi @thiyagu06! this:
creates an executor service that always runs the tasks in whatever and since you are calling that at the beginning of ideally you should not need to use if you are finding a case with SQS where the javaagent isn't propagating context automatically, it would be great if you can open an issue with a repro that we can use to troubleshoot it |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have an application which polls for message in SQS and do some processing. The processing includes calling external service, DB etc.. Once I receive the message from SQS, I will submit those message to executor service to the processing.
I used
Context.current().wrap(Executors.newFixedThreadPool(10))
this method to start tracing my message processing. But I don't see the tracing information is set in the logging MDC context? Any idea to achieve that? I'm using auto instrumentation to do the tracing.Beta Was this translation helpful? Give feedback.
All reactions