Can I generate a report of bugs in sonarqube

Hi @nirajlumen,

the screenshot you posted can not easily be exported as a pdf. This is what i ment by

you can create a portfolio with the projects that you want to get an overview about and download a report including the rating of these projects. in this report you can find a rating called “Reliability” which is depending on the quality profile that you use.

if you want a list of issues you would have to create a tooling using the sonarqube API yourself. i would advise you to take a look at the API endpoint api/issues/search, where you can query by a few factors.

Example: you have a project called test in the default-organization and your sonarqube server is on localhost:9000 with default credentials:

curl -u admin:admin "http://localhost:9000/api/issues/search?componentKeys=test&s=FILE_LINE&resolved=false&types=BUG&ps=100&organization=default-organization&facets=severities%2Ctypes&additionalFields=_all"

hope that helps and welcome to the community :slight_smile: