How to download the reports from the sonarqube

Hello,

I am using the Sonarqube Community Edition which has Version 9.9 (build 65466). I have multiple projects that contain scanned details.

Now I wanted to export all those reports to my local PC so that I can share them with my team members and they can work on the inputs required accordingly.

Please help me know if it’s possible to export the sonarqube findings into a PDF or any human-readable format in SonarQube Community Edition with Version 9.9 (build 65466). If its possible, please help me with the steps.

Best Regards,

Hi,

PDF reports are available starting in Enterprise Edition($$), but SonarQube is intended to be a central resource for everyone concerned with the quality of the code. The best practice here is to point your teammates at SonarQube to consume the details themselves.

If you really must present reports, you’ll need to use the web apis (docs link in your page footer) to extract the data, and craft your own reports.

The best way to master the API is to perform the desired action via the UI and eavesdrop to see which calls the UI made to accomplish the action.

You may also find this guide helpful.

 
HTH,
Ann

Thankyou for your response.