CodingMakeWordBetter opened a new issue, #12475:
URL: https://github.com/apache/skywalking/issues/12475

   ### 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
   
   OAP server (apache/skywalking)
   
   ### What happened
   
   When I was monitoring my springboot project using Skywalking 9.7.0, I found 
that in some cases: calling an annotated @ Asynchronous method, some tasks are 
submitted to the thread pool in this method, and the thread pool will make HTTP 
requests, but I did not see these request trace data in the SpringAsynchronous 
view of the Skywalking UI
   
   ### What you expected to happen
   
   I'm not sure if it's a problem with the OAP collection or if the agent 
hasn't reported it, but this situation can be easily reproduced.
   I am not sure where the problem lies and cannot fix it. If I can provide 
assistance or prompts, I will try to fix it
   
   ### How to reproduce
   
   I provide the following pseudocode:
   `      
      @Resource(name = "messageTasksExecutor")
       private AsyncTaskExecutor messageTasksExecutor;
     
       @Async("scheduledTasksExecutor")
       @TransactionalEventListener(phase = TransactionPhase.AFTER_COMMIT)
       public void sendMessageListener(MessageBatchInfo messageBatchInfo) {
               for (WhatsAppMessage whatsAppMessage : whatsAppMessages) {
         
                   messageTasksExecutor.execute(() -> {
                       // todo http request
                   });
               }
       }`
   I am certain that an HTTP request was made in messageTasksExecuter, but I 
did not see it in SpringAsynchronous in the Skywalking UI view
   
   
   
   ### Anything else
   
   I used Alibaba's trace to detect my project before, and he used 
OpenTelemetery-JavaAgent. jar for data reporting without any loss.
   
   ### Are you willing to submit a pull request to fix on your own?
   
   - [X] Yes I am willing to submit a pull request on my own!
   
   ### 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: 
notifications-unsubscr...@skywalking.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to