SARIF reports
You can import Static Analysis Results Interchange Format (SARIF) reports into SonarCloud. The issues will be taken into account by SonarCloud 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.
Import process
SonarCloud manages the import of a SARIF issue as follows:
- It assigns the
CONVENTIONAL
Clean Code attribute and theSECURITY
software quality to the issue. - It manages the issue's impact level on the software quality (security) as follows:
- If a SARIF
severity
field is provided at the rule level for the issue then the mapping below is used to retrieve the corresponding impact level.
- If a SARIF
Severity field in SARIF 2.1.0 | Impact level in SonarCloud |
---|---|
error | HIGH |
warning | MEDIUM |
note | LOW |
none | LOW |
- Otherwise, the default MEDIUM impact level is applied.
See Clean Code for details about the Clean Code concepts mentioned above.
Setting up the import
To set up the import of SARIF reports into SonarCloud:
- Prepare your SARIF report files according to the import file specifications below.
- Use on the scanner side the analysis parameter
sonar.sarifReportPaths
to define the list of SARIF report files to be imported during your project analysis. This parameter accepts a comma-delimited list of paths.
Import file specifications
The SARIF files must:
- Be UTF-8 file encoded.
- Comply with the official SARIF format, version 2.1.0.
Mandatory fields
Field | Description |
---|---|
version | Must be set to “2.1.0”. |
runs[].tool.driver.name | Name of the tool that created the report. |
runs[].results[].message.text | Message of the external issue. |
runs[].results[].ruleId | Identifier of the corresponding rule in the tool that created the report. |
If a mandatory field is missing, the report is ignored (see the corresponding line in the logs).
Optional fields
Field | Description |
---|---|
runs[].results[].locations[] | SonarCloud only uses the first item in the array. It must be a physical location. |
physicalLocation.artifactLocation.uri | Path of the file concerned by the issue. If no location is defined, the issue is raised at the project level. |
| Text range concerned by the issue. Is defined by the following fields:
If |
sarifLog.runs[].tool.driver.rules[].defaultConfiguration.level | SonarCloud uses this field to determine the issue's impact level on security. |
sarifLog.runs[].tool.extensions[].rules[].defaultConfiguration.level | SonarCloud uses this field to determine the issue's impact level on security if the driver field above is not used. |
The sarifLog.runs[].results[].level field which defines the issue's severity will be ignored by SonarCloud.
Import file example
Was this page helpful?