The report is generated but is not reflected in the project overview

The execution seems correct and some issues are detected in the logs, but when I go to the dashboard, the tab code is empty and 0 issues where detected.

  • Github

  • Github command

  • Scanner command: dotnet-sonarscanner begin /k:“XXXXX” /o:“XXX” /d:sonar.login=“${{ env.SONAR_TOKEN }}” /d:sonar.host.url=“https://sonarcloud.io

  • Languages of the repository: C#

Github action yml:

name: SonarCloudLinux
on:
  push:
    branches:
      - feat-sonnar
  pull_request:
    types: [opened, synchronize, reopened]
jobs:
  build:
    name: Build
    runs-on: ubuntu-latest
    steps:
      - name: Set up JDK 11
        uses: actions/setup-java@v1
        with:
          java-version: 1.11
      - uses: actions/checkout@v2
        with:
          fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
      - name: Cache SonarCloud packages
        uses: actions/cache@v1
        with:
          path: ~\sonar\cache
          key: ${{ runner.os }}-sonar
          restore-keys: ${{ runner.os }}-sonar
      - name: Install SonarCloud scanners
        run: |
          dotnet tool install --global dotnet-sonarscanner
      - name: Build and analyze project
        working-directory: XXX/
        env:
          GITHUB_TOKEN: TEST
          SONAR_TOKEN: TEST
        run: |
          dotnet-sonarscanner begin /k:"XXXXX" /o:"XXXX" /d:sonar.login="${{ env.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.verbose=true  /d:sonar.scanAllFiles=true
          dotnet build "Repo/repo.csproj" 
          dotnet-sonarscanner end /d:sonar.login="${{ env.SONAR_TOKEN }}"
Run dotnet-sonarscanner begin /k:"XXXX" /o:"XXXXX" /d:sonar.login="XXXX" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.verbose=true /d:sonar.scanAllFiles=true
SonarScanner for MSBuild 5.11
Using the .NET Core version of the Scanner for MSBuild
Default properties file was found at /home/runner/.dotnet/tools/.store/dotnet-sonarscanner/5.11.0/dotnet-sonarscanner/5.11.0/tools/net5.0/any/SonarQube.Analysis.xml
Loading analysis properties from /home/runner/.dotnet/tools/.store/dotnet-sonarscanner/5.11.0/dotnet-sonarscanner/5.11.0/tools/net5.0/any/SonarQube.Analysis.xml
sonar.verbose=true was specified - setting the log verbosity to 'Debug'
Pre-processing started.
Preparing working directories...
Using environment variables to determine the download directory...
17:42:28.288  17:42:28.28  Loading analysis properties from /home/runner/.dotnet/tools/.store/dotnet-sonarscanner/5.11.0/dotnet-sonarscanner/5.11.0/tools/net5.0/any/SonarQube.Analysis.xml
17:42:28.288  17:42:28.288  sonar.verbose=true was specified - setting the log verbosity to 'Debug'
17:42:28.29  Updating build integration targets...
17:42:28.293  Installed SonarQube.Integration.ImportBefore.targets to /home/runner/.local/share/Microsoft/MSBuild/4.0/Microsoft.Common.targets/ImportBefore
....
....

95ADB756-7016-4CF6-8DCB-75BFE5837BE0.sonar.working.directory=/home/runner/work/repo/repo/subfolder/.sonarqube/out/.sonar/mod1
0BEB3ABD-EBA2-4872-AFDD-1CE19A1DE4C6.sonar.projectKey=XXXX:0BEB3ABD-EBA2-4872-AFDD-1CE19A1DE4C6
0BEB3ABD-EBA2-4872-AFDD-1CE19A1DE4C6.sonar.projectName=XXXX
0BEB3ABD-EBA2-4872-AFDD-1CE19A1DE4C6.sonar.projectBaseDir=/home/runner/work/repo/repo/subfolder/File.Model
0BEB3ABD-EBA2-4872-AFDD-1CE19A1DE4C6.sonar.sourceEncoding=utf-8
0BEB3ABD-EBA2-4872-AFDD-1CE19A1DE4C6.sonar.sources=\
...
...
17:43:14.207 INFO: Load/download plugins (done) | time=15272ms
17:43:14.528 DEBUG: Plugins:
17:43:14.528 DEBUG:   * IaC Code Quality and Security 1.11.0.2847 (iac)
17:43:14.528 DEBUG:   * PL/SQL Code Quality and Security 3.8.0.4948 (plsql)
17:43:14.528 DEBUG:   * Scala Code Quality and Security 1.11.0.3905 (sonarscala)
17:43:14.528 DEBUG:   * C# Code Quality and Security 8.52.0.60960 (csharp)
17:43:14.528 DEBUG:   * Vulnerability Analysis 9.9.0.19083 (security)
17:43:14.528 DEBUG:   * Java Code Quality and Security 7.16.0.30901 (java)
17:43:14.528 DEBUG:   * HTML Code Quality and Security 3.7.1.3306 (web)
17:43:14.528 DEBUG:   * Flex Code Quality and Security 2.8.0.3166 (flex)
17:43:14.528 DEBUG:   * XML Code Quality and Security 2.7.0.3820 (xml)
17:43:14.528 DEBUG:   * Text Code Quality and Security 2.0.1.611 (text)
17:43:14.528 DEBUG:   * VB.NET Code Quality and Security 8.52.0.60960 (vbnet)
17:43:14.529 DEBUG:   * Swift Code Quality and Security 4.8.0.5759 (swift)
17:43:14.529 DEBUG:   * CFamily Code Quality and Security 6.41.0.60884 (cpp)
17:43:14.529 DEBUG:   * Python Code Quality and Security 3.24.0.10784 (python)
17:43:14.529 DEBUG:   * Dataflow Bug Detection Rules for Python 1.10.0.3046 (dbdpythonfrontend)
17:43:14.529 DEBUG:   * Dataflow Bug Detection 1.10.0.3046 (dbd)
17:43:14.529 DEBUG:   * Go Code Quality and Security 1.11.0.3905 (go)
17:43:14.529 DEBUG:   * JaCoCo 1.3.0.1538 (jacoco)
17:43:14.529 DEBUG:   * Kotlin Code Quality and Security 2.12.0.1956 (kotlin)
17:43:14.529 DEBUG:   * Dataflow Bug Detection Rules for Java 1.10.0.3046 (dbdjavafrontend)
17:43:14.529 DEBUG:   * T-SQL Code Quality and Security 1.8.0.5601 (tsql)
17:43:14.529 DEBUG:   * Apex Code Quality and Security 1.11.0.3905 (sonarapex)
17:43:14.529 DEBUG:   * JavaScript/TypeScript/CSS Code Quality and Security 9.13.0.20537 (javascript)
17:43:14.529 DEBUG:   * Ruby Code Quality and Security 1.11.0.3905 (ruby)
17:43:14.529 DEBUG:   * Vulnerability Rules for C# 9.9.0.19083 (securitycsharpfrontend)
17:43:14.529 DEBUG:   * Vulnerability Rules for Java 9.9.0.19083 (securityjavafrontend)
17:43:14.529 DEBUG:   * License for SonarLint 8.0.0.37226 (license)
17:43:14.529 DEBUG:   * Vulnerability Rules for JS 9.9.0.19083 (securityjsfrontend)
17:43:14.529 DEBUG:   * COBOL Code Quality 5.2.0.5949 (cobol)
17:43:14.530 DEBUG:   * Vulnerability Rules for Python 9.9.0.19083 (securitypythonfrontend)
17:43:14.530 DEBUG:   * PHP Code Quality and Security 3.27.1.9352 (php)
17:43:14.530 DEBUG:   * ABAP Code Quality and Security 3.11.0.4030 (abap)
17:43:14.530 DEBUG:   * Configuration detection fot Code Quality and Security 1.2.0.267 (config)
17:43:14.530 DEBUG:   * Vulnerability Rules for PHP 9.9.0.19083 (securityphpfrontend)

17:43:59.901 DEBUG: Adding normal issue S125: /home/runner/work/XXX/XXX/Repo/Repo.Logic.LF/Order/Model/OrderResponseModel.cs
17:43:59.902 DEBUG: Adding normal issue S1854: /home/runner/work/XXX/XXX/Repo/Repo.Logic.LF/Inventory/Methods/GetInventoryStock.cs
17:43:59.902 DEBUG: Adding external issue CA1822: /home/runner/work/XXX/XXX/Repo/Repo.Logic.LF/Inventory/Methods/GetInventoryStock.cs
17:43:59.902 DEBUG: Adding external issue CA1822: /home/runner/work/XXX/XXX/Repo/Repo.Logic.LF/Tracking/Methods/GetGuideTracking.cs
17:43:59.902 DEBUG: Adding external issue CA1822: /home/runner/work/XXX/XXX/Repo/Repo.Logic.LF/Tracking/Methods/GetGuide.cs
17:43:59.903 DEBUG: Processing Roslyn report: /home/runner/work/XXX/XXX/Repo/.sonarqube/out/4/Issues.json
17:43:59.904 DEBUG: Adding external issue CA2254: /home/runner/work/XXX/XXX/Repo/Repo.Service/Controllers/TrackingController.cs
17:43:59.904 DEBUG: Adding external issue CA2254: /home/runner/work/XXX/XXX/Repo/Repo.Service/Controllers/TrackingController.cs
17:43:59.904 DEBUG: Adding external issue CA2254: /home/runner/work/XXX/XXX/Repo/Repo.Service/Controllers/ProductController.cs
17:43:59.904 DEBUG: Adding external issue CA2254:


17:44:00.107 DEBUG: Merge base sha1: af55fa44d2a0002fdfeb50a73adc2302678d76fa
17:44:00.108 DEBUG: SCM reported changed lines for 0 files in the branch
17:44:00.108 INFO: SCM writing changed lines (done) | time=6ms
17:44:00.432 INFO: Analysis report generated in 390ms, dir size=373 KB
17:44:00.565 INFO: Analysis report compressed in 133ms, zip size=142 KB
17:44:00.565 INFO: Analysis report generated in /home/runner/work/XXX/XXX/repo/.sonarqube/out/.sonar/scanner-report
17:44:00.565 DEBUG: Upload report
17:44:01.589 DEBUG: POST 200 https://sonarcloud.io/api/ce/submit?organization=XXXX&projectKey=XXX_XXX&characteristic=branch%3Dfeat-sonnar&characteristic=branchType%3DSHORT | time=1023ms
17:44:01.592 INFO: Analysis report uploaded in 1027ms
17:44:01.593 DEBUG: Report metadata written to /home/runner/work/XXX/XXX/repo/.sonarqube/out/.sonar/report-task.txt
17:44:01.593 INFO: ANALYSIS SUCCESSFUL, you can find the results at: https://sonarcloud.io/dashboard?id=XXX_XXX&branch=feat-sonnar&resolved=false
17:44:01.593 INFO: Note that you will be able to access the updated dashboard once the server has processed the submitted analysis report
...
17:44:02.566 INFO: Sensor cache published successfully
17:44:02.572 DEBUG: Post-jobs : 
17:44:02.574 INFO: Analysis total time: 47.524 s
17:44:02.575 INFO: ------------------------------------------------------------------------
17:44:02.575 INFO: EXECUTION SUCCESS
17:44:02.575 INFO: ------------------------------------------------------------------------
17:44:02.575 INFO: Total time: 1:09.447s
17:44:02.656 INFO: Final Memory: 49M/167M
17:44:02.656 INFO: ------------------------------------------------------------------------
Process returned exit code 0
The SonarScanner CLI has finished
17:44:02.989  Post-processing succeeded.

Do not share screenshots of logs – share the text itself (bonus points for being well-formatted)!

1 Like

Hi,

Welcome to the community!

Thanks for including your analysis log. Unfortunately, you’ve excerpted it to exclude - I suspect - the key parts. Can you take check them for the kinds of things I excerpted in this post? Because if your projects were categorized as test projects, it’s quite natural they wouldn’t have lines of code, (but lines of tests, although I’m not sure we count that metric).

 
Ann

Hi Ann,

Thanks for your quick response,

I check the post that you mention, but I think is a different issue, all the logs
6_Build and analyze project.txt (2.5 MB) just change & rename some sensitive information.

Hi,

My text editor is balking on that file. Can you copy/paste the text into a post?

 
Ann

Sure

I remove some lines so can be open in the browser, is in Drive and publicy accessible

Hi,

I can see this in the Google Docs preview, but download comes up empty for some reason. Can you please copy/paste the text into a post? The preview is painful to try to read with linebreaks in weird places and no highlighting.

 
Ann

Sorry for that, the command was running in verbose mode, and the limit here is 50,000 characters, that’s why I uploaded the file to Drive. Re-run logs without verbose mode…

2023-02-07T18:49:33.6364714Z ##[group]Run dotnet-sonarscanner begin /k:"organization-mx_reponame_midd" /o:"organization-mx" /d:sonar.login="SENSITIVE" /d:sonar.host.url="https://sonarcloud.io"
2023-02-07T18:49:33.6365497Z e[36;1mdotnet-sonarscanner begin /k:"organization-mx_reponame_midd" /o:"organization-mx" /d:sonar.login="SENSITIVE" /d:sonar.host.url="https://sonarcloud.io"e[0m
2023-02-07T18:49:33.6366016Z e[36;1mdotnet build "Cell.Service/Cell.Service.csproj" e[0m
2023-02-07T18:49:33.6366497Z e[36;1mdotnet-sonarscanner end /d:sonar.login="SENSITIVE"e[0m
2023-02-07T18:49:33.6424355Z shell: /usr/bin/bash -e {0}
2023-02-07T18:49:33.6424577Z env:
2023-02-07T18:49:33.6424836Z   JAVA_HOME_11.0.18_x64: /opt/hostedtoolcache/jdk/11.0.18/x64
2023-02-07T18:49:33.6425156Z   JAVA_HOME: /opt/hostedtoolcache/jdk/11.0.18/x64
2023-02-07T18:49:33.6425448Z   JAVA_HOME_11_0_18_X64: /opt/hostedtoolcache/jdk/11.0.18/x64
2023-02-07T18:49:33.6425968Z   GITHUB_TOKEN: ***
2023-02-07T18:49:33.6426262Z   SONAR_TOKEN: SENSITIVE
2023-02-07T18:49:33.6426629Z ##[endgroup]
2023-02-07T18:49:33.7554751Z SonarScanner for MSBuild 5.11
2023-02-07T18:49:33.7556231Z Using the .NET Core version of the Scanner for MSBuild
2023-02-07T18:49:33.8749888Z Pre-processing started.
2023-02-07T18:49:33.8764170Z Preparing working directories...
2023-02-07T18:49:33.8970056Z 18:49:33.896  Updating build integration targets...
2023-02-07T18:49:35.1691933Z 18:49:35.168  Fetching analysis configuration settings...
2023-02-07T18:49:36.4594807Z 18:49:36.459  Provisioning analyzer assemblies for cs...
2023-02-07T18:49:36.4602101Z 18:49:36.46  Installing required Roslyn analyzers...
2023-02-07T18:49:38.0600962Z 18:49:38.059  Provisioning analyzer assemblies for vbnet...
2023-02-07T18:49:38.0601727Z 18:49:38.059  Installing required Roslyn analyzers...
2023-02-07T18:49:38.1000659Z 18:49:38.099  Pre-processing succeeded.
2023-02-07T18:49:38.4553905Z MSBuild version 17.4.1+9a89d02ff for .NET
2023-02-07T18:49:39.9275384Z   Determining projects to restore...
2023-02-07T18:49:42.5156038Z   Restored /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Model/Cell.Model.csproj (in 810 ms).
2023-02-07T18:49:44.6771747Z   Restored /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Cell.Logic.csproj (in 2.98 sec).
2023-02-07T18:49:44.6970283Z   Restored /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic.LF/Cell.Logic.LF.csproj (in 14 ms).
2023-02-07T18:49:44.7042513Z   Restored /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Data/Cell.Data.csproj (in 4 ms).
2023-02-07T18:49:44.7351208Z   Restored /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Service/Cell.Service.csproj (in 2.21 sec).
2023-02-07T18:49:56.8914514Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Model/Orders/ColocateInfoModel.cs(9,1): warning S3261: Remove this empty namespace. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Model/Cell.Model.csproj]
2023-02-07T18:49:56.8917005Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Model/Common/ServiceEnum.cs(3,17): warning S2344: Rename this enumeration to remove the 'Enum' suffix. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Model/Cell.Model.csproj]
2023-02-07T18:49:56.8918079Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Model/Settings/ProcessStatusEnum.cs(3,17): warning S2344: Rename this enumeration to remove the 'Enum' suffix. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Model/Cell.Model.csproj]
2023-02-07T18:49:56.8919096Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Model/Orders/CellDB/PedidoStatusEnum.cs(9,17): warning S2344: Rename this enumeration to remove the 'Enum' suffix. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Model/Cell.Model.csproj]
2023-02-07T18:49:56.8920641Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Model/Orders/OrderColocateStateEnum.cs(9,17): warning S2344: Rename this enumeration to remove the 'Enum' suffix. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Model/Cell.Model.csproj]
2023-02-07T18:49:56.8921655Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Model/Orders/OrderProcessStatusEnum.cs(3,17): warning S2344: Rename this enumeration to remove the 'Enum' suffix. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Model/Cell.Model.csproj]
2023-02-07T18:49:56.8923300Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Model/Orders/PaymentTypeEnum.cs(9,17): warning S2344: Rename this enumeration to remove the 'Enum' suffix. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Model/Cell.Model.csproj]
2023-02-07T18:49:56.9786051Z   Cell.Model -> /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Model/bin/Debug/net6.0/Cell.Model.dll
2023-02-07T18:49:57.0038850Z   Sonar: (Cell.Model.csproj) Project processed successfully
2023-02-07T18:49:59.9846362Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Data/Price/PriceData.cs(12,41): warning S4487: Remove this unread private field '_configuration' or refactor the code to use its value. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Data/Cell.Data.csproj]
2023-02-07T18:49:59.9847582Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Data/Orders/IOrderData.cs(10,54): warning S107: Method has 8 parameters, which is greater than the 7 authorized. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Data/Cell.Data.csproj]
2023-02-07T18:50:00.0113056Z   Cell.Data -> /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Data/bin/Debug/net6.0/Cell.Data.dll
2023-02-07T18:50:00.0551214Z   Sonar: (Cell.Data.csproj) Project processed successfully
2023-02-07T18:50:01.8415730Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic.LF/Order/Model/OrderResponseModel.cs(52,9): warning S125: Remove this commented out code. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic.LF/Cell.Logic.LF.csproj]
2023-02-07T18:50:01.8418374Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic.LF/Inventory/Methods/GetInventoryStock.cs(21,58): warning S1854: Remove this useless assignment to local variable 'inventory'. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic.LF/Cell.Logic.LF.csproj]
2023-02-07T18:50:01.9210319Z   Cell.Logic.LF -> /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic.LF/bin/Debug/net6.0/Cell.Logic.LF.dll
2023-02-07T18:50:01.9441742Z   Sonar: (Cell.Logic.LF.csproj) Project processed successfully
2023-02-07T18:50:06.4660161Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Orders/DownloadLogic.cs(209,21): warning S125: Remove this commented out code. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Cell.Logic.csproj]
2023-02-07T18:50:06.4678822Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Inventory/InventoryLogic.cs(382,9): warning S1144: Remove the unused private method 'SaveInventorySyncHistoryCell'. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Cell.Logic.csproj]
2023-02-07T18:50:06.4680301Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Orders/DownloadLogic.cs(28,38): warning S4487: Remove this unread private field '_orderLogic' or refactor the code to use its value. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Cell.Logic.csproj]
2023-02-07T18:50:06.4681682Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Orders/OrderLogic.cs(34,38): warning S4487: Remove this unread private field '_commonData' or refactor the code to use its value. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Cell.Logic.csproj]
2023-02-07T18:50:06.4683294Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Orders/DownloadLogic.cs(45,54): warning S1854: Remove this useless assignment to local variable 'result'. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Cell.Logic.csproj]
2023-02-07T18:50:06.4692051Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Tracking/TrackingLogic.cs(188,47): warning S2971: Drop 'Where' and move the condition into the 'Count'. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Cell.Logic.csproj]
2023-02-07T18:50:06.4706393Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Tracking/TrackingLogic.cs(379,54): warning S2971: Drop 'Where' and move the condition into the 'Count'. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Cell.Logic.csproj]
2023-02-07T18:50:06.4707941Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Tracking/TrackingLogic.cs(555,54): warning S2971: Drop 'Where' and move the condition into the 'Count'. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Cell.Logic.csproj]
2023-02-07T18:50:06.4709526Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Tracking/TrackingLogic.cs(774,34): warning S3267: Loop should be simplified by calling Select(item => item.OrderId)) [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Cell.Logic.csproj]
2023-02-07T18:50:06.4710581Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Orders/DownloadLogic.cs(240,48): warning S3776: Refactor this method to reduce its Cognitive Complexity from 60 to the 15 allowed. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Cell.Logic.csproj]
2023-02-07T18:50:06.4711617Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Orders/OrderLogic.cs(43,26): warning S107: Constructor has 11 parameters, which is greater than the 7 authorized. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Cell.Logic.csproj]
2023-02-07T18:50:06.4712913Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Orders/OrderLogic.cs(90,104): warning S927: Rename parameter 'orderStatus' to 'orderProcess' to match the interface declaration. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Cell.Logic.csproj]
2023-02-07T18:50:06.4744073Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Orders/OrderLogic.cs(1416,17): warning S1848: Either remove this useless object instantiation of class 'Thread' or use it. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Cell.Logic.csproj]
2023-02-07T18:50:06.4745232Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Orders/OrderLogic.cs(903,35): warning S1481: Remove the unused local variable 'itemsToChange'. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Cell.Logic.csproj]
2023-02-07T18:50:06.4746052Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Orders/OrderLogic.cs(905,26): warning S1481: Remove the unused local variable 'itemsToRemove'. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Cell.Logic.csproj]
2023-02-07T18:50:06.5359568Z   Cell.Logic -> /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/bin/Debug/net6.0/Cell.Logic.dll
2023-02-07T18:50:06.5439598Z   Sonar: (Cell.Logic.csproj) Project processed successfully
2023-02-07T18:50:09.1140030Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Service/Program.cs(36,5): warning S4792: Make sure that this logger's configuration is safe. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Service/Cell.Service.csproj]
2023-02-07T18:50:09.1141515Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Service/Program.cs(79,22): warning S5122: Make sure this permissive CORS policy is safe here. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Service/Cell.Service.csproj]
2023-02-07T18:50:09.6149030Z   Cell.Service -> /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Service/bin/Debug/net6.0/Cell.Service.dll
2023-02-07T18:50:09.6252982Z   Sonar: (Cell.Service.csproj) Project processed successfully
2023-02-07T18:50:09.6412238Z 
2023-02-07T18:50:09.6413570Z Build succeeded.
2023-02-07T18:50:09.6414152Z 
2023-02-07T18:50:09.6414878Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Model/Orders/ColocateInfoModel.cs(9,1): warning S3261: Remove this empty namespace. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Model/Cell.Model.csproj]
2023-02-07T18:50:09.6416428Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Model/Common/ServiceEnum.cs(3,17): warning S2344: Rename this enumeration to remove the 'Enum' suffix. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Model/Cell.Model.csproj]
2023-02-07T18:50:09.6418011Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Model/Settings/ProcessStatusEnum.cs(3,17): warning S2344: Rename this enumeration to remove the 'Enum' suffix. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Model/Cell.Model.csproj]
2023-02-07T18:50:09.6454805Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Orders/OrderLogic.cs(1285,35): warning S1481: Remove the unused local variable 'itemsChange'. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Cell.Logic.csproj]
2023-02-07T18:50:09.6455663Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Orders/OrderLogic.cs(1392,75): warning S3358: Extract this nested ternary operation into an independent statement. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Cell.Logic.csproj]
2023-02-07T18:50:09.6456693Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Orders/OrderLogic.cs(1416,17): warning S1848: Either remove this useless object instantiation of class 'Thread' or use it. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Cell.Logic.csproj]
2023-02-07T18:50:09.6457660Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Orders/OrderLogic.cs(903,35): warning S1481: Remove the unused local variable 'itemsToChange'. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Cell.Logic.csproj]
2023-02-07T18:50:09.6458610Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Orders/OrderLogic.cs(905,26): warning S1481: Remove the unused local variable 'itemsToRemove'. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic/Cell.Logic.csproj]
2023-02-07T18:50:09.6459552Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Service/Program.cs(36,5): warning S4792: Make sure that this logger's configuration is safe. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Service/Cell.Service.csproj]
2023-02-07T18:50:09.6460288Z /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Service/Program.cs(79,22): warning S5122: Make sure this permissive CORS policy is safe here. [/home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Service/Cell.Service.csproj]
2023-02-07T18:50:09.6460758Z     44 Warning(s)
2023-02-07T18:50:09.6460963Z     0 Error(s)
2023-02-07T18:50:09.6461099Z 
2023-02-07T18:50:09.6461204Z Time Elapsed 00:00:30.97
2023-02-07T18:50:09.8153204Z SonarScanner for MSBuild 5.11
2023-02-07T18:50:09.8155866Z Using the .NET Core version of the Scanner for MSBuild
2023-02-07T18:50:09.9679192Z Post-processing started.
2023-02-07T18:50:10.1578761Z Calling the SonarScanner CLI...
2023-02-07T18:50:10.3737492Z INFO: Scanner configuration file: /home/runner/.dotnet/tools/.store/dotnet-sonarscanner/5.11.0/dotnet-sonarscanner/5.11.0/tools/net5.0/any/sonar-scanner-4.8.0.2856/conf/sonar-scanner.properties
2023-02-07T18:50:10.3745042Z INFO: Project root configuration file: /home/runner/work/reponame_midd/reponame_midd/Cell/.sonarqube/out/sonar-project.properties
2023-02-07T18:50:10.4488546Z INFO: SonarScanner 4.8.0.2856
2023-02-07T18:50:10.4490118Z INFO: Java 11.0.18 Azul Systems, Inc. (64-bit)
2023-02-07T18:50:10.4491035Z INFO: Linux 5.15.0-1031-azure amd64
2023-02-07T18:50:11.1252932Z INFO: User cache: /home/runner/.sonar/cache
2023-02-07T18:50:17.5964782Z INFO: Analyzing on SonarCloud
2023-02-07T18:50:17.5986237Z INFO: Default locale: "en", source code encoding: "UTF-8" (analysis is platform dependent)
2023-02-07T18:50:18.4184424Z INFO: Load global settings
2023-02-07T18:50:19.3367607Z INFO: Load global settings (done) | time=919ms
2023-02-07T18:50:19.3435103Z INFO: Server id: 1BD809FA-AWHW8ct9-T_TB3XqouNu
2023-02-07T18:50:19.3643867Z INFO: User cache: /home/runner/.sonar/cache
2023-02-07T18:50:19.3740091Z INFO: Load/download plugins
2023-02-07T18:50:19.3760631Z INFO: Load plugins index
2023-02-07T18:50:20.2769778Z INFO: Load plugins index (done) | time=903ms
2023-02-07T18:50:26.8633228Z INFO: Load/download plugins (done) | time=7489ms
2023-02-07T18:50:28.1327833Z INFO: Loaded core extensions: developer-scanner
2023-02-07T18:50:28.8492123Z INFO: Found an active CI vendor: 'Github Actions'
2023-02-07T18:50:28.8669607Z INFO: Load project settings for component key: 'organization-mx_reponame_midd'
2023-02-07T18:50:29.7350036Z INFO: Load project settings for component key: 'organization-mx_reponame_midd' (done) | time=866ms
2023-02-07T18:50:29.7372820Z INFO: Process project properties
2023-02-07T18:50:29.7531158Z INFO: Execute project builders
2023-02-07T18:50:29.8066797Z INFO: Execute project builders (done) | time=53ms
2023-02-07T18:50:29.8146037Z INFO: Project key: organization-mx_reponame_midd
2023-02-07T18:50:29.8147452Z INFO: Base dir: /home/runner/work/reponame_midd/reponame_midd/Cell
2023-02-07T18:50:29.8148903Z INFO: Working dir: /home/runner/work/reponame_midd/reponame_midd/Cell/.sonarqube/out/.sonar
2023-02-07T18:50:29.9214746Z INFO: Load project branches
2023-02-07T18:50:30.8143654Z INFO: Load project branches (done) | time=892ms
2023-02-07T18:50:30.8171793Z INFO: Check ALM binding of project 'organization-mx_reponame_midd'
2023-02-07T18:50:31.6778948Z INFO: Detected project binding: BOUND
2023-02-07T18:50:31.6786079Z INFO: Check ALM binding of project 'organization-mx_reponame_midd' (done) | time=862ms
2023-02-07T18:50:31.6829296Z INFO: Load project pull requests
2023-02-07T18:50:32.5483432Z INFO: Load project pull requests (done) | time=865ms
2023-02-07T18:50:32.5518021Z INFO: Load branch configuration
2023-02-07T18:50:32.5539140Z INFO: Github event: push
2023-02-07T18:50:32.5610544Z INFO: Auto-configuring branch feat-sonnar
2023-02-07T18:50:32.5616248Z INFO: Load branch configuration (done) | time=10ms
2023-02-07T18:50:32.6134194Z INFO: Load quality profiles
2023-02-07T18:50:33.5589154Z INFO: Load quality profiles (done) | time=945ms
2023-02-07T18:50:33.5643725Z INFO: Load active rules
2023-02-07T18:50:41.9670911Z INFO: Load active rules (done) | time=8402ms
2023-02-07T18:50:42.0091795Z INFO: Organization key: organization-mx
2023-02-07T18:50:42.0098933Z INFO: Branch name: feat-sonnar, type: short-lived
2023-02-07T18:50:42.0230961Z INFO: Load project repositories
2023-02-07T18:50:42.9091933Z INFO: Load project repositories (done) | time=886ms
2023-02-07T18:50:42.9108908Z INFO: SCM collecting changed files in the branch
2023-02-07T18:50:43.1642585Z INFO: SCM collecting changed files in the branch (done) | time=250ms
2023-02-07T18:50:43.2386302Z INFO: Indexing files...
2023-02-07T18:50:43.2439103Z INFO: Project configuration:
2023-02-07T18:50:43.2440289Z INFO:   Excluded sources: **/build-wrapper-dump.json
2023-02-07T18:50:43.4830386Z INFO: Indexing files of module 'Cell.Model'
2023-02-07T18:50:43.4839515Z INFO:   Base dir: /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Model
2023-02-07T18:50:43.4877542Z INFO:   Source paths: Common/ServiceEnum.cs, Common/ServiceStatusModel.cs, Interact...
2023-02-07T18:50:43.4897337Z INFO:   Excluded sources: **/build-wrapper-dump.json
2023-02-07T18:50:43.5995878Z INFO: Indexing files of module 'Cell.Service'
2023-02-07T18:50:43.6005534Z INFO:   Base dir: /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Service
2023-02-07T18:50:43.6015855Z INFO:   Source paths: Controllers/HealthController.cs, Controllers/InventoryStockCo...
2023-02-07T18:50:43.6025161Z INFO:   Excluded sources: **/build-wrapper-dump.json
2023-02-07T18:50:43.6276743Z INFO: Indexing files of module 'Cell.Data'
2023-02-07T18:50:43.6287811Z INFO:   Base dir: /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Data
2023-02-07T18:50:43.6298092Z INFO:   Source paths: Common/CommonData.cs, Common/ICommonData.cs, Inventory/IInven...
2023-02-07T18:50:43.6307092Z INFO:   Excluded sources: **/build-wrapper-dump.json
2023-02-07T18:50:43.6557801Z INFO: Indexing files of module 'Cell.Logic'
2023-02-07T18:50:43.6574985Z INFO:   Base dir: /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic
2023-02-07T18:50:43.6585803Z INFO:   Source paths: Interactions/IInteractionLogic.cs, Interactions/InteractionLo...
2023-02-07T18:50:43.6596046Z INFO:   Excluded sources: **/build-wrapper-dump.json
2023-02-07T18:50:43.7209461Z INFO: Indexing files of module 'Cell.Logic.LF'
2023-02-07T18:50:43.7220366Z INFO:   Base dir: /home/runner/work/reponame_midd/reponame_midd/Cell/Cell.Logic.LF
2023-02-07T18:50:43.7221690Z INFO:   Source paths: Connected Services/LogisfashionService/Reference.cs, Inventor...
2023-02-07T18:50:43.7225231Z INFO:   Excluded sources: **/build-wrapper-dump.json
2023-02-07T18:50:43.7903652Z INFO: Indexing files of module 'organization-mx_reponame_midd'
2023-02-07T18:50:43.7917561Z INFO:   Base dir: /home/runner/work/reponame_midd/reponame_midd/Cell
2023-02-07T18:50:43.7930341Z INFO:   Excluded sources: **/build-wrapper-dump.json
2023-02-07T18:50:43.8067172Z INFO: 129 files indexed
2023-02-07T18:50:43.8081671Z INFO: 0 files ignored because of inclusion/exclusion patterns
2023-02-07T18:50:43.8094664Z INFO: 5 files ignored because of scm ignore settings
2023-02-07T18:50:43.8121974Z INFO: Quality profile for cs: Sonar way
2023-02-07T18:50:43.8131970Z INFO: Quality profile for json: Sonar way
2023-02-07T18:50:43.9199762Z INFO: ------------- Run sensors on module Cell.Logic
2023-02-07T18:50:44.1493358Z INFO: Load metrics repository
2023-02-07T18:50:45.0258168Z INFO: Load metrics repository (done) | time=874ms
2023-02-07T18:50:45.0502386Z INFO: Sensor cache enabled
2023-02-07T18:50:45.0548719Z INFO: Load sensor cache
2023-02-07T18:50:46.6555368Z INFO: Load sensor cache (5 KB) | time=1601ms
2023-02-07T18:50:49.9101998Z INFO: Sensor C# Project Type Information [csharp]
2023-02-07T18:50:49.9202829Z INFO: Roslyn version: 4.4.0.0
2023-02-07T18:50:49.9207966Z INFO: Language version: CSharp10
2023-02-07T18:50:49.9212555Z INFO: Concurrent execution: enabled
2023-02-07T18:50:49.9217041Z INFO: Sensor C# Analysis Log [csharp] (done) | time=8ms
2023-02-07T18:50:49.9783400Z INFO: 20 source files to be analyzed
2023-02-07T18:50:50.1615473Z INFO: 20/20 source files have been analyzed
2023-02-07T18:50:50.1617289Z INFO: Sensor TextAndSecretsSensor [text] (done) | time=228ms
2023-02-07T18:50:50.1617730Z INFO: Sensor VB.NET Project Type Information [vbnet]
2023-02-07T18:50:50.1782208Z INFO: Sensor JaCoCo XML Report Importer [jacoco]
2023-02-07T18:50:50.1859608Z INFO: 'sonar.coverage.jacoco.xmlReportPaths' is not defined. Using default locations: target/site/jacoco/jacoco.xml,target/site/jacoco-it/jacoco.xml,build/reports/jacoco/test/jacocoTestReport.xml
2023-02-07T18:50:50.1860307Z INFO: No report imported, no coverage information will be imported by JaCoCo XML Report Importer
2023-02-07T18:50:50.1863153Z INFO: Sensor JaCoCo XML Report Importer [jacoco] (done) | time=2ms
2023-02-07T18:50:50.1863506Z INFO: Sensor CSS Rules [javascript]
2023-02-07T18:50:50.2053593Z INFO: 0 source files to be analyzed
2023-02-07T18:50:50.2527415Z INFO: 0/0 source files have been analyzed
2023-02-07T18:50:50.2536035Z INFO: Sensor IaC Docker Sensor [iac] (done) | time=67ms
2023-02-07T18:50:50.2541394Z INFO: Sensor Serverless configuration file sensor [security]
2023-02-07T18:50:50.2550064Z INFO: 0 Serverless function entries were found in the project
2023-02-07T18:50:50.2593646Z INFO: 0 Serverless function handlers were kept as entrypoints
2023-02-07T18:50:50.2601474Z INFO: Sensor Serverless configuration file sensor [security] (done) | time=6ms
2023-02-07T18:50:50.2684498Z INFO: ------------- Run sensors on module Cell.Logic.LF
2023-02-07T18:50:50.4527404Z INFO: Sensor IaC CloudFormation Sensor [iac]
2023-02-07T18:50:50.4925995Z INFO: 0 source files to be analyzed
2023-02-07T18:50:50.5020975Z INFO: 0/0 source files have been analyzed
2023-02-07T18:50:50.5047550Z INFO: Sensor IaC CloudFormation Sensor [iac] (done) | time=51ms
2023-02-07T18:50:50.5048105Z INFO: Sensor IaC Kubernetes Sensor [iac]
2023-02-07T18:50:50.5181093Z INFO: 0 source files to be analyzed
2023-02-07T18:50:50.5187896Z INFO: 0/0 source files have been analyzed
2023-02-07T18:50:50.5194608Z INFO: Sensor IaC Kubernetes Sensor [iac] (done) | time=17ms
2023-02-07T18:50:50.5203889Z INFO: Sensor C# Project Type Information [csharp]
2023-02-07T18:50:50.5211017Z INFO: Sensor C# Project Type Information [csharp] (done) | time=1ms
2023-02-07T18:50:50.5218562Z INFO: Sensor C# Analysis Log [csharp]
2023-02-07T18:50:50.5275113Z INFO: Roslyn version: 4.4.0.0
2023-02-07T18:50:50.5275590Z INFO: Language version: CSharp10
2023-02-07T18:50:50.5275961Z INFO: Concurrent execution: enabled
2023-02-07T18:50:50.5276378Z INFO: Sensor C# Analysis Log [csharp] (done) | time=3ms
2023-02-07T18:50:50.5276721Z INFO: Sensor C# Properties [csharp]
2023-02-07T18:50:50.5277225Z INFO: Sensor C# Properties [csharp] (done) | time=0ms
2023-02-07T18:50:50.5277614Z INFO: Sensor HTML [web]
2023-02-07T18:50:50.5279435Z INFO: Sensor HTML [web] (done) | time=1ms
2023-02-07T18:50:50.5286813Z INFO: Sensor TextAndSecretsSensor [text]
2023-02-07T18:50:50.5457442Z INFO: 26 source files to be analyzed
2023-02-07T18:50:50.6908738Z INFO: 26/26 source files have been analyzed
2023-02-07T18:50:50.6967778Z INFO: Sensor TextAndSecretsSensor [text] (done) | time=168ms
2023-02-07T18:50:50.6976810Z INFO: Sensor VB.NET Project Type Information [vbnet]
2023-02-07T18:50:50.6984314Z INFO: Sensor VB.NET Project Type Information [vbnet] (done) | time=1ms
2023-02-07T18:50:50.6991125Z INFO: Sensor VB.NET Analysis Log [vbnet]
2023-02-07T18:50:50.6998055Z INFO: Sensor VB.NET Analysis Log [vbnet] (done) | time=1ms
2023-02-07T18:50:50.7006691Z INFO: Sensor VB.NET Properties [vbnet]
2023-02-07T18:50:50.7012972Z INFO: Sensor VB.NET Properties [vbnet] (done) | time=0ms
2023-02-07T18:50:50.7019989Z INFO: Sensor JaCoCo XML Report Importer [jacoco]
2023-02-07T18:50:50.7026657Z INFO: 'sonar.coverage.jacoco.xmlReportPaths' is not defined. Using default locations: target/site/jacoco/jacoco.xml,target/site/jacoco-it/jacoco.xml,build/reports/jacoco/test/jacocoTestReport.xml
2023-02-07T18:50:50.7032142Z INFO: No report imported, no coverage information will be imported by JaCoCo XML Report Importer
2023-02-07T18:50:50.7037653Z INFO: Sensor JaCoCo XML Report Importer [jacoco] (done) | time=2ms
2023-02-07T18:50:50.7046952Z INFO: Sensor CSS Rules [javascript]
2023-02-07T18:50:50.7054636Z INFO: No CSS, PHP, HTML or VueJS files are found in the project. CSS analysis is skipped.
2023-02-07T18:50:50.7059849Z INFO: Sensor CSS Rules [javascript] (done) | time=1ms
2023-02-07T18:50:50.7066900Z INFO: Sensor ThymeLeaf template sensor [securityjavafrontend]
2023-02-07T18:50:50.7074749Z INFO: Sensor ThymeLeaf template sensor [securityjavafrontend] (done) | time=1ms
2023-02-07T18:50:50.7082014Z INFO: Sensor IaC Docker Sensor [iac]
2023-02-07T18:50:50.7223622Z INFO: 0 source files to be analyzed
2023-02-07T18:50:50.7229184Z INFO: 0/0 source files have been analyzed
2023-02-07T18:50:50.7327764Z INFO: Sensor IaC Docker Sensor [iac] (done) | time=25ms
2023-02-07T18:50:50.7336623Z INFO: Sensor Serverless configuration file sensor [security]
2023-02-07T18:50:50.7343337Z INFO: 0 Serverless function entries were found in the project
2023-02-07T18:50:50.7350075Z INFO: 0 Serverless function handlers were kept as entrypoints
2023-02-07T18:50:50.7355742Z INFO: Sensor Serverless configuration file sensor [security] (done) | time=2ms
2023-02-07T18:50:50.7393110Z INFO: ------------- Run sensors on module Cell.Data
2023-02-07T18:50:50.9536892Z INFO: Sensor C# Project Type Information [csharp]
2023-02-07T18:50:50.9538733Z INFO: Sensor C# Project Type Information [csharp] (done) | time=1ms
2023-02-07T18:50:50.9546407Z INFO: Sensor C# Analysis Log [csharp]
2023-02-07T18:50:50.9555967Z INFO: Roslyn version: 4.4.0.0
2023-02-07T18:50:50.9560937Z INFO: Language version: CSharp10
2023-02-07T18:50:50.9567263Z INFO: Concurrent execution: enabled
2023-02-07T18:50:50.9573156Z INFO: Sensor C# Analysis Log [csharp] (done) | time=2ms
2023-02-07T18:50:50.9579930Z INFO: Sensor C# Properties [csharp]
2023-02-07T18:50:50.9587633Z INFO: Sensor C# Properties [csharp] (done) | time=1ms
2023-02-07T18:50:50.9594054Z INFO: Sensor HTML [web]
2023-02-07T18:50:50.9602716Z INFO: Sensor HTML [web] (done) | time=0ms
2023-02-07T18:50:50.9609880Z INFO: Sensor TextAndSecretsSensor [text]
2023-02-07T18:50:50.9688059Z INFO: 16 source files to be analyzed
2023-02-07T18:50:50.9947120Z INFO: 16/16 source files have been analyzed
2023-02-07T18:50:50.9964508Z INFO: Sensor TextAndSecretsSensor [text] (done) | time=35ms
2023-02-07T18:50:50.9980060Z INFO: Sensor VB.NET Analysis Log [vbnet]
2023-02-07T18:50:51.0066041Z INFO: 'sonar.coverage.jacoco.xmlReportPaths' is not defined. Using default locations: target/site/jacoco/jacoco.xml,target/site/jacoco-it/jacoco.xml,build/reports/jacoco/test/jacocoTestReport.xml
2023-02-07T18:50:51.0066740Z INFO: No report imported, no coverage information will be imported by JaCoCo XML Report Importer
2023-02-07T18:50:51.0067152Z INFO: Sensor JaCoCo XML Report Importer [jacoco] (done) | time=1ms
2023-02-07T18:50:51.0067454Z INFO: Sensor CSS Rules [javascript]
2023-02-07T18:50:51.0067814Z INFO: No CSS, PHP, HTML or VueJS files are found in the project. CSS analysis is skipped.
2023-02-07T18:50:51.0192386Z INFO: Sensor Serverless configuration file sensor [security] (done) | time=2ms
2023-02-07T18:50:51.0200376Z INFO: Sensor AWS SAM template file sensor [security]
2023-02-07T18:50:51.0209653Z INFO: Sensor AWS SAM template file sensor [security] (done) | time=1ms
2023-02-07T18:50:51.0218307Z INFO: Sensor AWS SAM Inline template file sensor [security]
2023-02-07T18:50:51.0227951Z INFO: Sensor AWS SAM Inline template file sensor [security] (done) | time=1ms
2023-02-07T18:50:51.0237568Z INFO: ------------- Run sensors on module Cell.Model
2023-02-07T18:50:51.3537612Z INFO: Sensor C# Project Type Information [csharp]
2023-02-07T18:50:51.3546662Z INFO: Sensor C# Project Type Information [csharp] (done) | time=1ms
2023-02-07T18:50:51.3556988Z INFO: Sensor C# Analysis Log [csharp]
2023-02-07T18:50:51.3570257Z INFO: Roslyn version: 4.4.0.0
2023-02-07T18:50:51.3578179Z INFO: Language version: CSharp10
2023-02-07T18:50:51.3586371Z INFO: Concurrent execution: enabled
2023-02-07T18:50:51.3594771Z INFO: Sensor C# Analysis Log [csharp] (done) | time=4ms
2023-02-07T18:50:51.3604577Z INFO: Sensor C# Properties [csharp]
2023-02-07T18:50:51.3618669Z INFO: Sensor C# Properties [csharp] (done) | time=1ms
2023-02-07T18:50:51.3629603Z INFO: Sensor HTML [web]
2023-02-07T18:50:51.3819603Z INFO: Sensor HTML [web] (done) | time=18ms
2023-02-07T18:50:51.3819972Z INFO: Sensor TextAndSecretsSensor [text]
2023-02-07T18:50:51.3967888Z INFO: 51 source files to be analyzed
2023-02-07T18:50:51.4170938Z INFO: 51/51 source files have been analyzed
2023-02-07T18:50:51.4187424Z INFO: Sensor TextAndSecretsSensor [text] (done) | time=37ms
2023-02-07T18:50:51.4193710Z INFO: Sensor VB.NET Project Type Information [vbnet]
2023-02-07T18:50:51.4206809Z INFO: Sensor VB.NET Project Type Information [vbnet] (done) | time=2ms
2023-02-07T18:50:51.4219443Z INFO: Sensor VB.NET Analysis Log [vbnet]
2023-02-07T18:50:51.4220357Z INFO: Sensor VB.NET Analysis Log [vbnet] (done) | time=0ms
2023-02-07T18:50:51.4232438Z INFO: Sensor VB.NET Properties [vbnet]
2023-02-07T18:50:51.4241108Z INFO: Sensor VB.NET Properties [vbnet] (done) | time=1ms
2023-02-07T18:50:51.4252503Z INFO: Sensor JaCoCo XML Report Importer [jacoco]
2023-02-07T18:50:51.4253845Z INFO: 'sonar.coverage.jacoco.xmlReportPaths' is not defined. Using default locations: target/site/jacoco/jacoco.xml,target/site/jacoco-it/jacoco.xml,build/reports/jacoco/test/jacocoTestReport.xml
2023-02-07T18:50:51.4266088Z INFO: No report imported, no coverage information will be imported by JaCoCo XML Report Importer
2023-02-07T18:50:51.4266962Z INFO: Sensor JaCoCo XML Report Importer [jacoco] (done) | time=3ms
2023-02-07T18:50:51.4267466Z INFO: Sensor CSS Rules [javascript]
2023-02-07T18:50:51.4279932Z INFO: No CSS, PHP, HTML or VueJS files are found in the project. CSS analysis is skipped.
2023-02-07T18:50:51.4280643Z INFO: Sensor CSS Rules [javascript] (done) | time=1ms
2023-02-07T18:50:51.4288661Z INFO: Sensor ThymeLeaf template sensor [securityjavafrontend]
2023-02-07T18:50:51.4301964Z INFO: Sensor ThymeLeaf template sensor [securityjavafrontend] (done) | time=2ms
2023-02-07T18:50:51.4308859Z INFO: Sensor IaC Docker Sensor [iac]
2023-02-07T18:50:51.4406745Z INFO: 0 source files to be analyzed
2023-02-07T18:50:51.4444831Z INFO: 0/0 source files have been analyzed
2023-02-07T18:50:51.4457886Z INFO: Sensor IaC Docker Sensor [iac] (done) | time=16ms
2023-02-07T18:50:51.4468373Z INFO: Sensor Serverless configuration file sensor [security]
2023-02-07T18:50:51.4477634Z INFO: 0 Serverless function entries were found in the project
2023-02-07T18:50:51.4486737Z INFO: 0 Serverless function handlers were kept as entrypoints
2023-02-07T18:50:51.4496837Z INFO: Sensor Serverless configuration file sensor [security] (done) | time=3ms
2023-02-07T18:50:51.4507715Z INFO: Sensor AWS SAM template file sensor [security]
2023-02-07T18:50:51.4517176Z INFO: Sensor AWS SAM template file sensor [security] (done) | time=1ms
2023-02-07T18:50:51.4527028Z INFO: Sensor AWS SAM Inline template file sensor [security]
2023-02-07T18:50:51.4536754Z INFO: Sensor AWS SAM Inline template file sensor [security] (done) | time=1ms
2023-02-07T18:50:51.4548164Z INFO: ------------- Run sensors on module Cell.Service
2023-02-07T18:50:51.6487786Z INFO: Sensor IaC CloudFormation Sensor [iac]
2023-02-07T18:50:51.6707650Z INFO: 0 source files to be analyzed
2023-02-07T18:50:51.6731006Z INFO: 0/0 source files have been analyzed
2023-02-07T18:50:51.6741967Z INFO: Sensor IaC CloudFormation Sensor [iac] (done) | time=33ms
2023-02-07T18:50:51.6752842Z INFO: Sensor IaC Kubernetes Sensor [iac]
2023-02-07T18:50:51.6894777Z INFO: 0 source files to be analyzed
2023-02-07T18:50:51.6936163Z INFO: 0/0 source files have been analyzed
2023-02-07T18:50:51.6947606Z INFO: Sensor IaC Kubernetes Sensor [iac] (done) | time=20ms
2023-02-07T18:50:51.6958291Z INFO: Sensor C# Project Type Information [csharp]
2023-02-07T18:50:51.6969549Z INFO: Sensor C# Project Type Information [csharp] (done) | time=1ms
2023-02-07T18:50:51.6979995Z INFO: Sensor C# Analysis Log [csharp]
2023-02-07T18:50:51.6993054Z INFO: Roslyn version: 4.4.0.0
2023-02-07T18:50:51.7001199Z INFO: Language version: CSharp10
2023-02-07T18:50:51.7009562Z INFO: Concurrent execution: enabled
2023-02-07T18:50:51.7018591Z INFO: Sensor C# Analysis Log [csharp] (done) | time=4ms
2023-02-07T18:50:51.7030158Z INFO: Sensor C# Properties [csharp]
2023-02-07T18:50:51.7041442Z INFO: Sensor C# Properties [csharp] (done) | time=1ms
2023-02-07T18:50:51.7051239Z INFO: Sensor HTML [web]
2023-02-07T18:50:51.7079708Z INFO: Sensor HTML [web] (done) | time=3ms
2023-02-07T18:50:51.7089647Z INFO: Sensor TextAndSecretsSensor [text]
2023-02-07T18:50:51.7200018Z INFO: 16 source files to be analyzed
2023-02-07T18:51:01.7219148Z INFO: 10/16 files analyzed, current file: Cell.Service/aws-logger-errors.txt
2023-02-07T18:51:11.7220596Z INFO: 10/16 files analyzed, current file: Cell.Service/aws-logger-errors.txt
2023-02-07T18:51:21.7224180Z INFO: 10/16 files analyzed, current file: Cell.Service/aws-logger-errors.txt
2023-02-07T18:51:23.6390715Z INFO: 16/16 source files have been analyzed
2023-02-07T18:51:23.6393745Z INFO: Sensor TextAndSecretsSensor [text] (done) | time=31930ms
2023-02-07T18:51:23.6401141Z INFO: Sensor VB.NET Project Type Information [vbnet]
2023-02-07T18:51:23.6402623Z INFO: Sensor VB.NET Project Type Information [vbnet] (done) | time=1ms
2023-02-07T18:51:23.6406321Z INFO: Sensor VB.NET Analysis Log [vbnet]
2023-02-07T18:51:23.6410597Z INFO: Sensor VB.NET Analysis Log [vbnet] (done) | time=0ms
2023-02-07T18:51:23.6412779Z INFO: Sensor VB.NET Properties [vbnet]
2023-02-07T18:51:23.6414194Z INFO: Sensor VB.NET Properties [vbnet] (done) | time=0ms
2023-02-07T18:51:23.6416558Z INFO: Sensor JaCoCo XML Report Importer [jacoco]
2023-02-07T18:51:23.6419290Z INFO: 'sonar.coverage.jacoco.xmlReportPaths' is not defined. Using default locations: target/site/jacoco/jacoco.xml,target/site/jacoco-it/jacoco.xml,build/reports/jacoco/test/jacocoTestReport.xml
2023-02-07T18:51:23.6570031Z INFO: 0 source files to be analyzed
2023-02-07T18:51:23.6571025Z INFO: 0/0 source files have been analyzed
2023-02-07T18:51:23.6591604Z INFO: ------------- Run sensors on module organization-mx_reponame_midd
2023-02-07T18:51:23.8412840Z INFO: Sensor C# Project Type Information [csharp]
2023-02-07T18:51:23.8413616Z INFO: Sensor C# Project Type Information [csharp] (done) | time=0ms
2023-02-07T18:51:23.8414383Z INFO: Sensor C# Analysis Log [csharp]
2023-02-07T18:51:23.8414946Z INFO: Sensor C# Analysis Log [csharp] (done) | time=0ms
2023-02-07T18:51:23.8415602Z INFO: Sensor C# Properties [csharp]
2023-02-07T18:51:23.8416206Z INFO: Sensor C# Properties [csharp] (done) | time=0ms
2023-02-07T18:51:23.8421061Z INFO: Sensor TextAndSecretsSensor [text]
2023-02-07T18:51:23.8422218Z INFO: Sensor TextAndSecretsSensor [text] (done) | time=0ms
2023-02-07T18:51:23.8422871Z INFO: Sensor VB.NET Project Type Information [vbnet]
2023-02-07T18:51:23.8426653Z INFO: Sensor VB.NET Project Type Information [vbnet] (done) | time=1ms
2023-02-07T18:51:23.8427247Z INFO: Sensor VB.NET Analysis Log [vbnet]
2023-02-07T18:51:23.8427975Z INFO: Sensor VB.NET Analysis Log [vbnet] (done) | time=0ms
2023-02-07T18:51:23.8428464Z INFO: Sensor VB.NET Properties [vbnet]
2023-02-07T18:51:23.8429285Z INFO: Sensor VB.NET Properties [vbnet] (done) | time=0ms
2023-02-07T18:51:23.8430040Z INFO: Sensor JaCoCo XML Report Importer [jacoco]
2023-02-07T18:51:23.8431607Z INFO: 'sonar.coverage.jacoco.xmlReportPaths' is not defined. Using default locations: target/site/jacoco/jacoco.xml,target/site/jacoco-it/jacoco.xml,build/reports/jacoco/test/jacocoTestReport.xml
2023-02-07T18:51:23.8438060Z INFO: Sensor IaC Docker Sensor [iac]
2023-02-07T18:51:23.8438506Z INFO: 0 source files to be analyzed
2023-02-07T18:51:23.8449246Z INFO: Sensor javabugs [dbd]
2023-02-07T18:51:23.8449832Z INFO: Reading IR files from: /home/runner/work/reponame_midd/reponame_midd/Cell/.sonarqube/out/.sonar/ir/java
2023-02-07T18:51:23.8450776Z INFO: No IR files have been included for analysis.
2023-02-07T18:51:23.8451294Z INFO: Sensor javabugs [dbd] (done) | time=1ms
2023-02-07T18:51:23.8452003Z INFO: Sensor pythonbugs [dbd]
2023-02-07T18:51:23.8485296Z INFO: Reading IR files from: /home/runner/work/reponame_midd/reponame_midd/Cell/.sonarqube/out/.sonar/ir/python
2023-02-07T18:51:23.8489491Z INFO: No IR files have been included for analysis.
2023-02-07T18:51:23.8492133Z INFO: Sensor pythonbugs [dbd] (done) | time=11ms
2023-02-07T18:51:23.8493736Z INFO: Sensor JavaSecuritySensor [security]
2023-02-07T18:51:23.8495670Z INFO: Reading type hierarchy from: /home/runner/work/reponame_midd/reponame_midd/Cell/.sonarqube/out/.sonar/ucfg2/java
2023-02-07T18:51:23.8497283Z INFO: Read 0 type definitions
2023-02-07T18:51:23.8513555Z INFO: No UCFGs have been included for analysis.
2023-02-07T18:51:23.8520875Z INFO: Sensor JavaSecuritySensor [security] (done) | time=6ms
2023-02-07T18:51:23.8529813Z INFO: Sensor CSharpSecuritySensor [security]
2023-02-07T18:51:23.8538756Z INFO: Reading type hierarchy from: /home/runner/work/reponame_midd/reponame_midd/Cell/.sonarqube/out/ucfg_cs2
2023-02-07T18:51:23.9644417Z INFO: Read 271 type definitions
2023-02-07T18:51:23.9748251Z INFO: Reading UCFGs from: /home/runner/work/reponame_midd/reponame_midd/Cell/.sonarqube/out/ucfg_cs2
2023-02-07T18:51:24.2679129Z INFO: 18:51:24.266157 Building Runtime Type propagation graph
2023-02-07T18:51:24.2988063Z INFO: 18:51:24.293748 Running Tarjan on 2118 nodes
2023-02-07T18:51:24.3067629Z INFO: 18:51:24.305658 Tarjan found 2118 components
2023-02-07T18:51:24.3147489Z INFO: 18:51:24.314101 Variable type analysis: done
2023-02-07T18:51:24.3214128Z INFO: 18:51:24.316521 Building Runtime Type propagation graph
2023-02-07T18:51:24.3243571Z INFO: 18:51:24.324055 Running Tarjan on 2118 nodes
2023-02-07T18:51:24.3260913Z INFO: 18:51:24.325794 Tarjan found 2118 components
2023-02-07T18:51:24.3286104Z INFO: 18:51:24.328355 Variable type analysis: done
2023-02-07T18:51:24.3299889Z INFO: Analyzing 1075 ucfgs to detect vulnerabilities.
2023-02-07T18:51:24.7155567Z INFO: All rules entrypoints : 0
2023-02-07T18:51:24.7186948Z INFO: Retained UCFGs : 0
2023-02-07T18:51:24.7215264Z INFO: Taint analysis starting. Entrypoints: 0
2023-02-07T18:51:24.7223968Z INFO: Taint analysis: done.
2023-02-07T18:51:24.7232464Z INFO: Sensor CSharpSecuritySensor [security] (done) | time=870ms
2023-02-07T18:51:24.7243754Z INFO: Sensor PhpSecuritySensor [security]
2023-02-07T18:51:24.7255429Z INFO: Reading type hierarchy from: /home/runner/work/reponame_midd/reponame_midd/Cell/.sonarqube/out/.sonar/ucfg2/php
2023-02-07T18:51:24.7263785Z INFO: Read 0 type definitions
2023-02-07T18:51:24.7272181Z INFO: No UCFGs have been included for analysis.
2023-02-07T18:51:24.7294699Z INFO: Sensor PhpSecuritySensor [security] (done) | time=4ms
2023-02-07T18:51:24.7303740Z INFO: Sensor PythonSecuritySensor [security]
2023-02-07T18:51:24.7313659Z INFO: Reading type hierarchy from: /home/runner/work/reponame_midd/reponame_midd/Cell/.sonarqube/out/.sonar/ucfg2/python
2023-02-07T18:51:24.7348909Z INFO: Read 0 type definitions
2023-02-07T18:51:24.7358295Z INFO: No UCFGs have been included for analysis.
2023-02-07T18:51:24.7367284Z INFO: Sensor PythonSecuritySensor [security] (done) | time=6ms
2023-02-07T18:51:24.7377187Z INFO: Sensor JsSecuritySensor [security]
2023-02-07T18:51:24.7386723Z INFO: Reading type hierarchy from: /home/runner/work/reponame_midd/reponame_midd/Cell/.sonarqube/out/.sonar/ucfg2/js
2023-02-07T18:51:24.7394572Z INFO: Read 0 type definitions
2023-02-07T18:51:24.7403130Z INFO: No UCFGs have been included for analysis.
2023-02-07T18:51:24.7412573Z INFO: Sensor JsSecuritySensor [security] (done) | time=3ms
2023-02-07T18:51:24.7422906Z INFO: ------------- Run sensors on project
2023-02-07T18:51:24.7937320Z INFO: Sensor C# [csharp]
2023-02-07T18:51:24.8038672Z INFO: Importing results from 6 proto files in '/home/runner/work/reponame_midd/reponame_midd/Cell/.sonarqube/out/3/output-cs'
2023-02-07T18:51:25.0883258Z INFO: Importing results from 6 proto files in '/home/runner/work/reponame_midd/reponame_midd/Cell/.sonarqube/out/2/output-cs'
2023-02-07T18:51:25.1345517Z INFO: Importing results from 6 proto files in '/home/runner/work/reponame_midd/reponame_midd/Cell/.sonarqube/out/1/output-cs'
2023-02-07T18:51:25.1879145Z INFO: Importing results from 6 proto files in '/home/runner/work/reponame_midd/reponame_midd/Cell/.sonarqube/out/0/output-cs'
2023-02-07T18:51:25.2357608Z INFO: Importing results from 6 proto files in '/home/runner/work/reponame_midd/reponame_midd/Cell/.sonarqube/out/4/output-cs'
2023-02-07T18:51:25.2742406Z INFO: Importing 5 Roslyn reports
2023-02-07T18:51:25.3926048Z INFO: Found 5 MSBuild C# projects: 5 MAIN projects.
2023-02-07T18:51:25.3937274Z INFO: Sensor C# [csharp] (done) | time=600ms
2023-02-07T18:51:25.3959936Z INFO: Sensor Analysis Warnings import [csharp]
2023-02-07T18:51:25.3997483Z INFO: Sensor Analysis Warnings import [csharp] (done) | time=5ms
2023-02-07T18:51:25.4008912Z INFO: Sensor C# File Caching Sensor [csharp]
2023-02-07T18:51:25.4256759Z INFO: Sensor C# File Caching Sensor [csharp] (done) | time=24ms
2023-02-07T18:51:25.4266909Z INFO: Sensor Zero Coverage Sensor
2023-02-07T18:51:25.4606548Z INFO: Sensor Zero Coverage Sensor (done) | time=34ms
2023-02-07T18:51:25.4809862Z INFO: CPD Executor 30 files had no CPD blocks
2023-02-07T18:51:25.4819827Z INFO: CPD Executor Calculating CPD for 90 files
2023-02-07T18:51:25.5312498Z INFO: CPD Executor CPD calculation finished (done) | time=46ms
2023-02-07T18:51:25.6059400Z INFO: SCM writing changed lines
2023-02-07T18:51:25.6124956Z INFO: SCM writing changed lines (done) | time=6ms
2023-02-07T18:51:26.0531453Z INFO: Analysis report generated in 517ms, dir size=373 KB
2023-02-07T18:51:26.1764763Z INFO: Analysis report compressed in 123ms, zip size=142 KB
2023-02-07T18:51:27.7390267Z INFO: Analysis report uploaded in 1563ms
2023-02-07T18:51:27.7405049Z INFO: ANALYSIS SUCCESSFUL, you can find the results at: https://sonarcloud.io/dashboard?id=organization-mx_reponame_midd&branch=feat-sonnar&resolved=false
2023-02-07T18:51:27.7407171Z INFO: Note that you will be able to access the updated dashboard once the server has processed the submitted analysis report
2023-02-07T18:51:27.7408035Z INFO: More about the report processing at https://sonarcloud.io/api/ce/task?id=AYYtN_SENSITIVE
2023-02-07T18:51:29.1757581Z INFO: Sensor cache published successfully
2023-02-07T18:51:29.1911182Z INFO: Analysis total time: 1:01.069 s
2023-02-07T18:51:29.1923125Z INFO: ------------------------------------------------------------------------
2023-02-07T18:51:29.1926388Z INFO: EXECUTION SUCCESS
2023-02-07T18:51:29.1928295Z INFO: ------------------------------------------------------------------------
2023-02-07T18:51:29.1929317Z INFO: Total time: 1:18.826s
2023-02-07T18:51:29.3138406Z INFO: Final Memory: 49M/167M
2023-02-07T18:51:29.3140068Z INFO: ------------------------------------------------------------------------
2023-02-07T18:51:29.6515738Z The SonarScanner CLI has finished
2023-02-07T18:51:29.6518640Z 18:51:29.651  Post-processing succeeded.

Hi,

Thanks for the log. Nothing is jumping out at me.

Could we have screenshots of the homepage and code tab, redacted as necessary?

 
Ann

Sure,

In the master branch we use the auto-detect functionality, but just detects some python files, and most of the project is in c#(not detected code)

So we use the github actions from the tutorials section and some issues were detected in the logs, but in the dashboard nothing happens

  • Automatic Analysis was turn off in order to accomplish the github action analysis

Summary(sonnar branch)


Issues (sonnar branch)

Code (Empty in sonnar branch)

Hi,

Thanks for the screenshots. In fact, what we’re looking at is a PR analysis. For PRs we only report on the code changed in the PR. So it’s quite possible to correctly have the results you’re seeing. What changed in this PR? Was it non-code files (e.g. configuration files)?

 
Ann

Hi,

That makes total sense, indeed only configuration files were changed, Is there a way to re-scan the project in that branch?

Hi,

Sure. Just do a branch analysis.

 
HTH,
Ann

TY Ann, everything works well

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.