Information on API calls made by sonar scanner

Hello
I am using SonarQube Community Edition v9.9.1 with SonarScanner.
I want to filter the API calls made by SonarScanner to the SonarQube server.
Could you provide a list of all API GET that SonarScanner make to the SonarQube server as long as the final POST to publish the scan result ?

Thanks a lot !

Welcome :slight_smile:

you may use something like
grep /api/ce/submit $SONARQUBE/logs/access.log -C 5

it’s all in the Sonarqube access.log

Gilbert