xiaohei88 opened a new issue, #9332: URL: https://github.com/apache/skywalking/issues/9332
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/skywalking/issues?q=is%3Aissue) and found no similar issues. ### Apache SkyWalking Component Java Agent (apache/skywalking-java) ### What happened I want to get traceid in the sub thread。for example: ```java final ExecutorService executorService = Executors.newFixedThreadPool(2); @RequestMapping("/test1/log") public String get1() { logger.info(Thread.currentThread().getName() + "------->" + TraceContext.traceId()); executorService.submit(() -> { logger.info(Thread.currentThread().getName() + "------->" + TraceContext.traceId()); }); return "1"; } ``` result: http-nio-8090-exec-1------->Ignored_Trace pool-8-thread-1------->N/A ### What you expected to happen http-nio-8090-exec-1------->Ignored_Trace pool-8-thread-1------->Ignored_Trace ### How to reproduce no code ### Anything else _No response_ ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
