Latest | Analyzing source code | Importing external issues | Generic formatted reports

Was this page helpful?

On this page

Start Free

Generic formatted issue reports

If your third-party analyzer is not supported by SonarQube then you can import the reports by using the SonarQube generic issue format. No plugin is required. 

The external issues will be taken into account by SonarQube in the analysis report, but the rules corresponding to these issues will not be visible on the Rules page nor reflected in quality profiles. This means that the rules that raise external issues must be managed in your third-party tool. 

Setting up the import

  1. Set up the generation of the third-party reports in the generic issue format according to the specifications below.
  2. Set up the import of the report files by defining the analysis parameter sonar.externalIssuesReportPaths on the CI/CD host with the list of import directories or files. to define the list of report files to be imported during your project analysis. This parameter accepts a comma-delimited list of paths (A file path definition is either relative to the sonar.projectBaseDir property, which is by default the directory from which the analysis was started, or absolute.).

Generic issue format specifications

The issues report must contain, an array of Rule objects (rules) and an array of Issue objects. The figure below shows the different object types involved. The report fields for each object type are listed in the table below. For information about Clean Code attribute, software quality, and impact, see Clean Code.

List of report fields

The table below lists the fields by object type of the generic issue report format.

ObjectField                              FormatDescriptionMandatory
RuleidstringRule identifier.x

namestringRule name.x

descriptionstringRule description.

engineIdstringIdentifier of the third-party analyzer that provides the rule.x

cleanCodeAttributestring

Clean Code attribute associated with the rule (code characteristic checked by the rule). 

Possible values:

  • FORMATTED
  • CONVENTIONAL
  • etc.
    See the Clean Code page for the complete list.
x

impactsArray of Impact objectsList of software qualities to which the rule’s Clean Code attribute contributes with a specific impact. x
IssueprimaryLocationLocation objectPrimary location of the issue in the code.x

effortMinutesstringEvaluated issue solving time in minutes.
Default value: 0


secondaryLocationsArray of Location objectsSecondary locations of the issue in case several places in the code are concerned.
ImpactsoftwareQualitystring

Software quality. 

Possible values:

  • MAINTAINABILITY
  • RELIABILITY
  • SECURITY
x

severitystring

Associated level of impact. This level corresponds to the impact level of an issue raised through the rule.

Possible values:

  • HIGH
  • MEDIUM
  • LOW
x
LocationmessagestringText message displayed at the location and describing the issue.x

filePathstringObject used to locate the code to which the issue refers inside a file.x

textRangeTextRange objectObject used to locate the code to which the issue refers inside a file.For secondary locations only
TextRangestartLinestringStart line of the code to which the issue refers.x

endLinestringEnd line of the code to which the issue refers.

startColumnstring

Start column of the code to which the issue refers.

Note: startColumn must not be specified for empty lines.



endColumnstringEnd column of the code to which the issue refers.

Report file example

Below is an example of the expected format.


{
  "rules": [
    {
      "id": "rule1",
      "name": "just_some_rule_name",
      "description": "just_some_description",
      "engineId": "test",
      "cleanCodeAttribute": "FORMATTED",
      "impacts": [
        {
          "softwareQuality": "MAINTAINABILITY",
          "severity": "HIGH"
        },
        {
          "softwareQuality": "SECURITY",
          "severity": "LOW"
        }
      ]
    },
    {
      "id": "rule2",
      "name": "just_some_other_rule_name",
      "description": "just_some_description",
      "engineId": "test2",
      "cleanCodeAttribute": "IDENTIFIABLE",
      "impacts": [
        {
          "softwareQuality": "RELIABILITY",
          "severity": "LOW"
        }
      ]
    }
  ],
  "issues": [
    {
      "ruleId": "rule1",
      "effortMinutes": 40,
      "primaryLocation": {
        "message": "fix the issue here",
        "filePath": "file1.js",
        "textRange": {
          "startLine": 1,
          "startColumn": 2,
          "endLine": 3,
          "endColumn": 4
        }
      }
    },
    {
      "ruleId": "rule1",
      "primaryLocation": {
        "message": "fix the bug here",
        "filePath": "file2.js",
        "textRange": {
          "startLine": 3
        }
      }
    },
    {
      "ruleId": "rule1",
      "primaryLocation": {
        "message": "fix the bug here",
        "filePath": "file3.js"
      }
    },
    {
      "ruleId": "rule1",
      "primaryLocation": {
        "message": "fix the bug here",
        "filePath": "file3.js"
      },
      "secondaryLocations": [
        {
          "message": "fix the bug here",
          "filePath": "file1.js",
          "textRange": {
            "startLine": 1
          }
        },
        {
          "filePath": "file2.js",
          "textRange": {
            "startLine": 2
          }
        }
      ]
    },
    {
      "ruleId": "rule2",
      "effortMinutes": 40,
      "primaryLocation": {
        "message": "fix the bug here",
        "filePath": "file3.js"
      },
      "secondaryLocations": [
        {
          "message": "fix the bug here",
          "filePath": "file1.js",
          "textRange": {
            "startLine": 1
          }
        },
        {
          "filePath": "file2.js",
          "textRange": {
            "startLine": 2
          }
        }
      ]
    }
  ]
}

© 2008-2024 SonarSource SA. All rights reserved. SONAR, SONARSOURCE, SONARLINT, SONARQUBE, SONARCLOUD, and CLEAN AS YOU CODE are trademarks of SonarSource SA.

Creative Commons License