From cb5e6b2931cc174253e25218b95e8dfb83b9a60c Mon Sep 17 00:00:00 2001 From: RenFengJiang <1111> Date: Wed, 17 Jan 2024 10:31:10 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=EF=BC=9A=E6=97=A5=E5=BF=97?= =?UTF-8?q?=E6=96=87=E4=BB=B6=E6=A3=80=E6=9F=A5=E8=A7=84=E5=88=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../sonar/cxx/rules/checkers/LogChecker.java | 36 + .../cxx/rules/checkers/LogCheckerTest.java | 35 + .../sonar/cxx/rules/checkers/LogChecker.log | 2454 +++++++++++++++++ 3 files changed, 2525 insertions(+) create mode 100644 sonar-keyware-plugins-cxx/src/main/java/com/keyware/sonar/cxx/rules/checkers/LogChecker.java create mode 100644 sonar-keyware-plugins-cxx/src/test/java/com/keyware/sonar/cxx/rules/checkers/LogCheckerTest.java create mode 100644 sonar-keyware-plugins-cxx/src/test/resources/com/keyware/sonar/cxx/rules/checkers/LogChecker.log diff --git a/sonar-keyware-plugins-cxx/src/main/java/com/keyware/sonar/cxx/rules/checkers/LogChecker.java b/sonar-keyware-plugins-cxx/src/main/java/com/keyware/sonar/cxx/rules/checkers/LogChecker.java new file mode 100644 index 0000000..e911f27 --- /dev/null +++ b/sonar-keyware-plugins-cxx/src/main/java/com/keyware/sonar/cxx/rules/checkers/LogChecker.java @@ -0,0 +1,36 @@ +/* + * Copyright (c) 2023 - 2024. KeyWare.Co.Ltd All rights reserved. + * 项目名称:信息安全性设计准则检查插件 + * 项目描述:用于检查源代码的安全性设计准则的Sonarqube插件 + * 版权说明:本软件属北京关键科技股份有限公司所有,在未获得北京关键科技股份有限公司正式授权情况下,任何企业和个人,不能获取、阅读、安装、传播本软件涉及的任何受知识产权保护的内容。 + */ + +package com.keyware.sonar.cxx.rules.checkers; + +import com.sonar.cxx.sslr.api.AstNode; +import com.sonar.cxx.sslr.api.Grammar; +import org.sonar.check.Rule; +import org.sonar.cxx.squidbridge.annotations.ActivatedByDefault; +import org.sonar.cxx.squidbridge.annotations.SqaleConstantRemediation; +import org.sonar.cxx.squidbridge.checks.SquidCheck; + +import javax.annotation.Nullable; +/** + * TODO LogChecker + * + * @author RenFengJiang + * @date 2024/1/16 + */ +@Rule(key = "LogChecker", name = "日志文件检查", description = "在产品发布之前移除产生日志文件的代码") +@ActivatedByDefault +@SqaleConstantRemediation("5min") +public class LogChecker extends SquidCheck { + + @Override + public void visitFile(@Nullable AstNode astNode) { + super.visitFile(astNode); + if(getContext().getInputFile().filename().endsWith(".log")){ + getContext().createFileViolation(this, "日志文件检查"); + } + } +} diff --git a/sonar-keyware-plugins-cxx/src/test/java/com/keyware/sonar/cxx/rules/checkers/LogCheckerTest.java b/sonar-keyware-plugins-cxx/src/test/java/com/keyware/sonar/cxx/rules/checkers/LogCheckerTest.java new file mode 100644 index 0000000..6e222f1 --- /dev/null +++ b/sonar-keyware-plugins-cxx/src/test/java/com/keyware/sonar/cxx/rules/checkers/LogCheckerTest.java @@ -0,0 +1,35 @@ +/* + * Copyright (c) 2023 - 2024. KeyWare.Co.Ltd All rights reserved. + * 项目名称:信息安全性设计准则检查插件 + * 项目描述:用于检查源代码的安全性设计准则的Sonarqube插件 + * 版权说明:本软件属北京关键科技股份有限公司所有,在未获得北京关键科技股份有限公司正式授权情况下,任何企业和个人,不能获取、阅读、安装、传播本软件涉及的任何受知识产权保护的内容。 + */ + +package com.keyware.sonar.cxx.rules.checkers; + +import com.keyware.sonar.cxx.CxxFileTesterHelper; +import org.junit.jupiter.api.Test; +import org.sonar.cxx.CxxAstScanner; +import org.sonar.cxx.squidbridge.api.SourceFile; +import org.sonar.cxx.squidbridge.checks.CheckMessagesVerifier; + +import java.io.IOException; + +/** + * TODO LogCheckerTest + * + * @author RenFengJiang + * @date 2024/1/16 + */ +public class LogCheckerTest { + @Test + public void checkTest() throws IOException { + + var checker = new LogChecker(); + + var tester = CxxFileTesterHelper.create("LogChecker.log"); + SourceFile file = CxxAstScanner.scanSingleInputFile(tester.asInputFile(), checker); + CheckMessagesVerifier.verify(file.getCheckMessages()) + .next().withMessage("日志文件检查"); + } +} diff --git a/sonar-keyware-plugins-cxx/src/test/resources/com/keyware/sonar/cxx/rules/checkers/LogChecker.log b/sonar-keyware-plugins-cxx/src/test/resources/com/keyware/sonar/cxx/rules/checkers/LogChecker.log new file mode 100644 index 0000000..9b871dc --- /dev/null +++ b/sonar-keyware-plugins-cxx/src/test/resources/com/keyware/sonar/cxx/rules/checkers/LogChecker.log @@ -0,0 +1,2454 @@ +2024.01.14 16:04:49 INFO web[][o.s.p.ProcessEntryPoint] Gracefully stopping process +2024.01.14 16:04:49 INFO web[][o.s.s.n.NotificationDaemon] Notification service stopped +2024.01.14 16:04:49 INFO web[][c.z.h.HikariDataSource] HikariPool-1 - Shutdown initiated... +2024.01.14 16:04:49 INFO web[][c.z.h.HikariDataSource] HikariPool-1 - Shutdown completed. +2024.01.14 16:04:49 INFO web[][o.s.s.app.WebServer] Web Server stopped +2024.01.14 16:05:30 INFO web[][o.s.p.ProcessEntryPoint] Starting Web Server +2024.01.14 16:05:32 INFO web[][o.s.s.p.LogServerVersion] SonarQube Server / 10.2.1.78527 / 953bf4f6bc7c449ecd33704e5fb450c19412f037 +2024.01.14 16:05:32 INFO web[][o.s.d.DefaultDatabase] Create JDBC data source for jdbc:postgresql://172.16.36.5:5432/sonar-gx +2024.01.14 16:05:33 INFO web[][c.z.h.HikariDataSource] HikariPool-1 - Starting... +2024.01.14 16:05:33 INFO web[][c.z.h.p.HikariPool] HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@773dab28 +2024.01.14 16:05:33 INFO web[][c.z.h.HikariDataSource] HikariPool-1 - Start completed. +2024.01.14 16:05:34 INFO web[][o.s.s.p.ServerFileSystemImpl] SonarQube home: /mnt/d/.dev_env/sonarqube-10.2.1.78527 +2024.01.14 16:05:34 INFO web[][o.s.s.u.SystemPasscodeImpl] System authentication by passcode is disabled +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy C# Code Quality and Security / 9.8.0.76515 / c1515bad8ebe3e38e102b68fdec8c429669ec560 +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy C++ 信息安全性设计准则 / 1.0 / 1390585ba547ab6e3fe269c9d341cef06e44f08e +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy Checkstyle / 10.12.3 / +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy Chinese Pack / 10.2 / null +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy Clean as You Code / 2.1.0.500 / 4a2d47cf125d03ebacf43536a3897c168deb1b0a +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy Configuration detection for Code Quality and Security / 1.3.0.654 / 63073f0270b2c4754afa58eb8b5ea04e2eebf1a4 +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy Findbugs / 4.2.5 / +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy Flex Code Quality and Security / 2.10.0.3458 / 3ef14c50cfd03e5b40a2270fc6e8edc5c49dedcd +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy Go Code Quality and Security / 1.14.0.4481 / dcfff811316898a16bf1c6ff191dd3a5d84d3307 +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy Groovy / 1.8 / 6f5ddad1c7cf86e39cd9a8fc0be896660b4d4b61 +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy HTML Code Quality and Security / 3.9.0.3600 / c877f85377cbf43c325a924dff566e2511142dbd +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy IaC Code Quality and Security / 1.20.0.5654 / 45bdf29bcd98938351390d5b5905ee16e4616078 +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy JaCoCo / 1.3.0.1538 / 74a7798c7cea687c72ed9df40c93eb7ea2a58c49 +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy Java Code Quality and Security / 7.24.0.32100 / c39dafc9f60909db5edeb18ecc30ef617d9b5e7d +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy Java 安全性设计准则 / 1.0 / 5325a8a2ba0a1dd43823759afd160b13e8c8da99 +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy JavaScript/TypeScript/CSS Code Quality and Security / 10.5.1.22382 / aee0b6ea75d253c96e97ab00eb1e96e1112ec2a7 +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy Kotlin Code Quality and Security / 2.17.0.2902 / f561c3df92dca4379ae526fc4c912f786328f009 +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy MyBatis Plugin for SonarQube / 1.0.7 / null +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy PHP Code Quality and Security / 3.32.0.10180 / 077f75886ec0b948cdf94b61631a444bcd23a529 +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy Python Code Quality and Security / 4.7.0.12181 / eeaa409efe993ea779a0dacdbbe8e28e4879c975 +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy Ruby Code Quality and Security / 1.14.0.4481 / dcfff811316898a16bf1c6ff191dd3a5d84d3307 +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy SQL language plugin / 1.3.0 / null +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy Scala Code Quality and Security / 1.14.0.4481 / dcfff811316898a16bf1c6ff191dd3a5d84d3307 +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy Sonargraph Integration / 7.0.0 / null +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy Text Code Quality and Security / 2.3.0.1632 / 66d70521dd5e12993a5614c3202f4c33ae0182bd +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy VB.NET Code Quality and Security / 9.8.0.76515 / c1515bad8ebe3e38e102b68fdec8c429669ec560 +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy XML Code Quality and Security / 2.10.0.4108 / 34b16ba369117f6befc0b1e0866a069a80f6db2e +2024.01.14 16:05:36 INFO web[][o.s.s.p.ServerPluginManager] Deploy db* CODECOP for SonarQube (Standalone) / 8.9.7 / null +2024.01.14 16:06:27 INFO web[][o.s.s.p.d.m.c.PostgresCharsetHandler] Verify that database charset supports UTF8 +2024.01.14 16:06:27 INFO web[][o.s.s.e.EsClientProvider] Connected to local Elasticsearch: [http://localhost:9001] +2024.01.14 16:06:28 WARN web[][o.s.a.s.w.WebService$Action] Description is not set on action api/monitoring/metrics +2024.01.14 16:06:28 WARN web[][o.s.a.s.w.WebService$Action] Since is not set on action api/monitoring/metrics +2024.01.14 16:06:28 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/monitoring/metrics +2024.01.14 16:06:28 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/system/liveness +2024.01.14 16:06:28 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.platform.web.WebServiceFilter@5a7b6b75 [pattern=UrlPattern{inclusions=[/api/system/migrate_db.*, ...], exclusions=[/api/components/update_key, ...]}] +2024.01.14 16:06:28 INFO web[][o.s.s.p.DetectPluginChange] Detect plugin changes +2024.01.14 16:06:29 INFO web[][c.t.s.p.PlSqlCopPlugin] define db* CODECOP plugIn (standalone) +2024.01.14 16:06:30 INFO web[][o.s.s.s.LogServerId] Server ID: 4737A3D5-AYzn9DVLFnwpAXZFxDyi +2024.01.14 16:06:30 WARN web[][o.s.s.a.LogOAuthWarning] For security reasons, OAuth authentication should use HTTPS. You should set the property 'Administration > Configuration > Server base URL' to a HTTPS URL. +2024.01.14 16:06:31 INFO web[][o.s.s.p.UpdateCenterClient] Update center: https://update.sonarsource.org/update-center.properties +2024.01.14 16:06:32 INFO web[][o.h.v.i.util.Version] HV000001: Hibernate Validator null +2024.01.14 16:06:33 INFO web[][o.s.s.a.EmbeddedTomcat] HTTP connector enabled on port 9000 +2024.01.14 16:06:39 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action saml/validation_init +2024.01.14 16:06:39 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/issues/list +2024.01.14 16:06:39 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/system/liveness +2024.01.14 16:06:39 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/plugins/download +2024.01.14 16:06:39 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/analysis_cache/get +2024.01.14 16:06:39 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/alm_integrations/check_pat +2024.01.14 16:06:39 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/push/sonarlint_events +2024.01.14 16:06:39 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/dismiss_message/check +2024.01.14 16:06:39 WARN web[][o.s.a.s.w.WebService$Action] Since is not set on action api/cayc/issues_creation_histogram +2024.01.14 16:06:39 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/cayc/issues_creation_histogram +2024.01.14 16:06:39 INFO web[][o.s.s.a.p.ExpiredSessionsCleaner] Purge of expired session tokens has removed 3 elements +2024.01.14 16:06:39 INFO web[][o.s.s.a.p.ExpiredSessionsCleaner] Purge of expired SAML message ids has removed 0 elements +2024.01.14 16:06:39 INFO web[][o.s.s.n.NotificationDaemon] Notification service started (delay 60 sec.) +2024.01.14 16:06:39 INFO web[][o.s.s.t.TelemetryDaemon] Sharing of SonarQube statistics is enabled. +2024.01.14 16:06:42 INFO web[][o.s.s.s.GeneratePluginIndex] Generate scanner plugin index +2024.01.14 16:06:42 INFO web[][c.h.s.i.s.SonargraphMetrics] Sonargraph Integration: Created 55 predefined and 0 custom metric(s) +2024.01.14 16:06:42 INFO web[][o.s.s.s.RegisterMetrics] Register metrics +2024.01.14 16:06:42 INFO web[][o.s.s.r.r.RulesRegistrant] Register rules +2024.01.14 16:06:44 INFO web[][c.h.s.i.s.SonargraphRulesProvider] Sonargraph Integration: Loaded standard rules file '/com/hello2morrow/sonargraph/integration/sonarqube/SonargraphRules.properties' +2024.01.14 16:06:44 INFO web[][c.h.s.i.s.SonargraphRulesProvider] Sonargraph Integration: No custom rules file found at '/home/ubuntu/.sonargraphintegration/SonargraphRules.properties' +2024.01.14 16:06:44 INFO web[][c.h.s.i.s.SonargraphRules] Sonargraph Integration: Created 18 predefined and 0 custom rule(s) +2024.01.14 16:06:44 INFO web[][c.h.s.i.s.SonargraphRulesProvider] Sonargraph Integration: Loaded standard rules file '/com/hello2morrow/sonargraph/integration/sonarqube/SonargraphRules.properties' +2024.01.14 16:06:44 INFO web[][c.h.s.i.s.SonargraphRulesProvider] Sonargraph Integration: No custom rules file found at '/home/ubuntu/.sonargraphintegration/SonargraphRules.properties' +2024.01.14 16:06:44 INFO web[][c.h.s.i.s.SonargraphRules] Sonargraph Integration: Created 18 predefined and 0 custom rule(s) +2024.01.14 16:06:45 INFO web[][o.r.Reflections] Reflections took 23 ms to scan 1 urls, producing 206 keys and 206 values +2024.01.14 16:06:48 INFO web[][c.t.s.p.ClassUtil] instantiate class com.trivadis.sonar.plugin.TrivadisGuidelines3ValidatorConfig +2024.01.14 16:06:48 INFO web[][c.t.s.p.PlSqlCopRules] load db* CODECOP rules from /TrivadisGuidelines3/genmodel/rules.xml +2024.01.14 16:06:48 INFO web[][c.t.s.p.PlSqlCopRules] load db* CODECOP SQALE model from /TrivadisGuidelines3/genmodel/plsqlcop-model.xml +2024.01.14 16:06:57 INFO web[][o.s.s.q.b.BuiltInQProfileRepositoryImpl] Load quality profiles +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule ARCHITECTURE_VIOLATION in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_MODULE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_NAMESPACE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_COMPONENT_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION_ERROR in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule TODO in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DELETE_REFACTORING in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_REFACTORING in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_RENAME_REFACTORING in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule RENAME_REFACTORING in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DUPLICATE_CODE_BLOCK in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule QUALITY_GATE_ISSUE in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] Sonargraph Integration: Profile created +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule ARCHITECTURE_VIOLATION in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_MODULE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_NAMESPACE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_COMPONENT_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION_ERROR in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule TODO in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DELETE_REFACTORING in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_REFACTORING in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_RENAME_REFACTORING in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule RENAME_REFACTORING in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DUPLICATE_CODE_BLOCK in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule QUALITY_GATE_ISSUE in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MODULE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule NAMESPACE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule COMPONENT_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION in repo sonargraphintegration +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] Sonargraph Integration (Strict): Profile created +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule ARCHITECTURE_VIOLATION in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_MODULE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_NAMESPACE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_COMPONENT_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION_ERROR in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule TODO in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DELETE_REFACTORING in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_REFACTORING in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_RENAME_REFACTORING in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule RENAME_REFACTORING in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DUPLICATE_CODE_BLOCK in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule QUALITY_GATE_ISSUE in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] Sonargraph Integration C#: Profile created +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule ARCHITECTURE_VIOLATION in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_MODULE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_NAMESPACE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_COMPONENT_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION_ERROR in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule TODO in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DELETE_REFACTORING in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_REFACTORING in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_RENAME_REFACTORING in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule RENAME_REFACTORING in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DUPLICATE_CODE_BLOCK in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule QUALITY_GATE_ISSUE in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MODULE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule NAMESPACE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule COMPONENT_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION in repo sonargraphintegration_cs +2024.01.14 16:06:57 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] Sonargraph Integration C# (Strict): Profile created +2024.01.14 16:06:58 INFO web[][c.t.s.p.ClassUtil] instantiate class com.trivadis.sonar.plugin.TrivadisGuidelines3ValidatorConfig +2024.01.14 16:06:58 INFO web[][c.t.s.p.ClassUtil] instantiate class com.trivadis.tvdcc.validators.TrivadisGuidelines3 +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-0000 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1010 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1020 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1030 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1040 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1050 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1060 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1070 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2110 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2120 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-2130 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2140 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2150 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2160 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2170 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2180 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2185 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2190 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2210 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2220 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2310 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2320 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2330 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2340 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2410 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2510 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3110 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3120 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3130 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3140 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3210 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4110 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4120 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4130 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4140 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4210 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4220 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4230 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4240 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4310 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4320 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4330 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4340 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4350 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4360 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4370 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4375 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4380 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4385 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4390 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4395 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5020 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5030 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5040 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5050 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5060 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5070 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-6010 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-6020 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7110 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7120 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7130 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7140 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7150 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7210 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7220 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7230 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7160 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7310 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7320 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7410 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7430 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7420 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7440 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7450 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7510 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7710 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-8110 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-8210 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1080 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2135 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2145 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2230 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2610 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3115 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3145 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3150 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-3160 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-3170 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3180 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3182 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3183 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3185 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3190 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3195 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3220 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3310 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3320 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4250 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4260 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4270 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4325 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4365 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-5010 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5080 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7125 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-7170 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7250 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7330 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-7460 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7720 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7730 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-7740 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7810 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7910 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-8120 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-8310 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-8410 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-8510 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-9010 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-9020 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-9030 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-9040 in profile db* CODECOP +2024.01.14 16:06:58 INFO web[][o.s.s.q.RegisterQualityProfiles] Register quality profiles +2024.01.14 16:06:58 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile kubernetes/Sonar way +2024.01.14 16:06:58 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile css/Sonar way +2024.01.14 16:06:58 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile scala/Sonar way +2024.01.14 16:06:58 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile scala/FindBugs Security Scala +2024.01.14 16:06:58 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile jsp/Sonar way +2024.01.14 16:06:58 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile jsp/FindBugs Security JSP +2024.01.14 16:06:58 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile js/Sonar way +2024.01.14 16:06:58 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile py/Sonar way +2024.01.14 16:06:59 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile apex/FooLint Rules +2024.01.14 16:06:59 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile sql/SQL rules +2024.01.14 16:06:59 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile docker/Sonar way +2024.01.14 16:06:59 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/Java信息安全设计准则 +2024.01.14 16:06:59 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/Sonar way +2024.01.14 16:06:59 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/Sonargraph Integration +2024.01.14 16:06:59 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/Sonargraph Integration (Strict) +2024.01.14 16:06:59 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/FindBugs +2024.01.14 16:06:59 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/FindBugs + FB-Contrib +2024.01.14 16:07:00 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/FindBugs Security Audit +2024.01.14 16:07:00 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/FindBugs Security Minimal +2024.01.14 16:07:00 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile web/Sonar way +2024.01.14 16:07:00 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile flex/Sonar way +2024.01.14 16:07:00 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile xml/MyBatisLint Rules +2024.01.14 16:07:00 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile xml/Sonar way +2024.01.14 16:07:00 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile json/Sonar way +2024.01.14 16:07:00 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile text/Sonar way +2024.01.14 16:07:00 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile vbnet/Sonar way +2024.01.14 16:07:00 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile grvy/Sonar way +2024.01.14 16:07:00 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cloudformation/Sonar way +2024.01.14 16:07:00 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile yaml/Sonar way +2024.01.14 16:07:00 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cxx/Sonar way +2024.01.14 16:07:01 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cxx/C++信息安全性设计准则 +2024.01.14 16:07:01 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile kotlin/Sonar way +2024.01.14 16:07:01 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile go/Sonar way +2024.01.14 16:07:01 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile rpg/FooLint Rules +2024.01.14 16:07:01 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile tsql/FooLint Rules +2024.01.14 16:07:01 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile pli/FooLint Rules +2024.01.14 16:07:01 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile secrets/Sonar way +2024.01.14 16:07:01 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile ruby/Sonar way +2024.01.14 16:07:01 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cs/Sonar way +2024.01.14 16:07:01 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cs/Sonargraph Integration C# +2024.01.14 16:07:01 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cs/Sonargraph Integration C# (Strict) +2024.01.14 16:07:01 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cobol/FooLint Rules +2024.01.14 16:07:01 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile php/Sonar way +2024.01.14 16:07:01 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile terraform/Sonar way +2024.01.14 16:07:02 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile azureresourcemanager/Sonar way +2024.01.14 16:07:02 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile abap/FooLint Rules +2024.01.14 16:07:02 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile plsqlcop/db* CODECOP +2024.01.14 16:07:02 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile ts/Sonar way +2024.01.14 16:07:02 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile asp/FooLint Rules +2024.01.14 16:07:02 INFO web[][o.s.s.s.RegisterPermissionTemplates] Register permission templates +2024.01.14 16:07:02 INFO web[][o.s.s.s.RenameDeprecatedPropertyKeys] Rename deprecated property keys +2024.01.14 16:07:02 INFO web[][o.s.s.s.RegisterPlugins] Register plugins +2024.01.14 16:07:02 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.platform.web.SonarLintConnectionFilter@3d5efef1 [pattern=UrlPattern{inclusions=[/api/*], exclusions=[/api/v2/*]}] +2024.01.14 16:07:02 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.platform.web.WebServiceFilter@794b4ffb [pattern=UrlPattern{inclusions=[/api/issues/delete_comment.*, ...], exclusions=[/api/authentication/login.*, ...]}] +2024.01.14 16:07:02 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.platform.web.WebServiceReroutingFilter@2dcd0bac [pattern=UrlPattern{inclusions=[/api/components/update_key, ...], exclusions=[]}] +2024.01.14 16:07:02 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.DefaultAdminCredentialsVerifierFilter@6a47c83 [pattern=UrlPattern{inclusions=[/*], exclusions=[*.css, ...]}] +2024.01.14 16:07:02 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.InitFilter@4c47b3d0 [pattern=UrlPattern{inclusions=[/sessions/init/*], exclusions=[]}] +2024.01.14 16:07:02 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.SamlValidationRedirectionFilter@6f500934 [pattern=UrlPattern{inclusions=[/oauth2/callback/saml], exclusions=[]}] +2024.01.14 16:07:02 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.OAuth2CallbackFilter@2a05ef19 [pattern=UrlPattern{inclusions=[/oauth2/callback/*], exclusions=[]}] +2024.01.14 16:07:02 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.ResetPasswordFilter@fe0cebe [pattern=UrlPattern{inclusions=[/*], exclusions=[*.css, ...]}] +2024.01.14 16:07:02 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.ws.LoginAction@19cc96cb [pattern=UrlPattern{inclusions=[/api/authentication/login], exclusions=[]}] +2024.01.14 16:07:02 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.ws.LogoutAction@9896692 [pattern=UrlPattern{inclusions=[/api/authentication/logout], exclusions=[]}] +2024.01.14 16:07:02 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.ws.ValidateAction@150597b9 [pattern=UrlPattern{inclusions=[/api/authentication/validate], exclusions=[]}] +2024.01.14 16:07:02 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.saml.ws.ValidationInitAction@19724faa [pattern=UrlPattern{inclusions=[/saml/validation_init], exclusions=[]}] +2024.01.14 16:07:02 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.saml.ws.ValidationAction@4e597c9d [pattern=UrlPattern{inclusions=[/saml/validation], exclusions=[]}] +2024.01.14 16:07:02 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.user.ws.ChangePasswordAction@7ec835a1 [pattern=UrlPattern{inclusions=[/api/users/change_password], exclusions=[]}] +2024.01.14 16:07:02 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.plugins.PluginsRiskConsentFilter@11be8ae5 [pattern=UrlPattern{inclusions=[/*], exclusions=[*.css, ...]}] +2024.01.14 16:07:02 INFO web[][o.s.s.p.p.PlatformLevelStartup] Running Community Edition +2024.01.14 16:07:02 INFO web[][o.s.s.p.Platform] Web Server is operational +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'ABAP' version : 10.0.0 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'APEX' version : 10.0.0 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'ASP' version : 10.0.0 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'COBOL' version : 10.0.0 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'PLI' version : 10.0.0 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'RPG' version : 10.0.0 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'TSQL' version : 10.0.0 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'cayc' version : 2.1.0.500 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'config' version : 1.3.0.654 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'csharp' version : 9.8.0.76515 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'flex' version : 2.10.0.3458 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'go' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'iac' version : 1.20.0.5654 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'jacoco' version : 1.3.0.1538 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'java' version : 7.24.0.32100 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'javascript' version : 10.5.1.22382 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'keywareJavaPlugin' version : 1.0 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'kotlin' version : 2.17.0.2902 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'php' version : 3.32.0.10180 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'plsqlcop' version : 8.9.7 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'python' version : 4.7.0.12181 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'ruby' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'sonarkeywarepluginscxx' version : 1.0 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'sonarscala' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'sql' version : 1.3.0 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'text' version : 2.3.0.1632 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'vbnet' version : 9.8.0.76515 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'web' version : 3.9.0.3600 has not been found on the update center. +2024.01.14 16:08:54 INFO web[AY0HAompWaI2vBbzAAAQ][o.s.u.c.UpdateCenter] The plugin 'xml' version : 2.10.0.4108 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'ABAP' version : 10.0.0 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'APEX' version : 10.0.0 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'ASP' version : 10.0.0 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'COBOL' version : 10.0.0 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'PLI' version : 10.0.0 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'RPG' version : 10.0.0 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'TSQL' version : 10.0.0 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'cayc' version : 2.1.0.500 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'config' version : 1.3.0.654 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'csharp' version : 9.8.0.76515 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'flex' version : 2.10.0.3458 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'go' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'iac' version : 1.20.0.5654 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'jacoco' version : 1.3.0.1538 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'java' version : 7.24.0.32100 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'javascript' version : 10.5.1.22382 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'keywareJavaPlugin' version : 1.0 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'kotlin' version : 2.17.0.2902 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'php' version : 3.32.0.10180 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'plsqlcop' version : 8.9.7 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'python' version : 4.7.0.12181 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'ruby' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'sonarkeywarepluginscxx' version : 1.0 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'sonarscala' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'sql' version : 1.3.0 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'text' version : 2.3.0.1632 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'vbnet' version : 9.8.0.76515 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'web' version : 3.9.0.3600 has not been found on the update center. +2024.01.14 16:12:13 INFO web[AY0HAompWaI2vBbzAAEj][o.s.u.c.UpdateCenter] The plugin 'xml' version : 2.10.0.4108 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'ABAP' version : 10.0.0 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'APEX' version : 10.0.0 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'ASP' version : 10.0.0 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'COBOL' version : 10.0.0 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'PLI' version : 10.0.0 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'RPG' version : 10.0.0 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'TSQL' version : 10.0.0 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'cayc' version : 2.1.0.500 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'config' version : 1.3.0.654 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'csharp' version : 9.8.0.76515 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'flex' version : 2.10.0.3458 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'go' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'iac' version : 1.20.0.5654 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'jacoco' version : 1.3.0.1538 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'java' version : 7.24.0.32100 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'javascript' version : 10.5.1.22382 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'keywareJavaPlugin' version : 1.0 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'kotlin' version : 2.17.0.2902 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'php' version : 3.32.0.10180 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'plsqlcop' version : 8.9.7 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'python' version : 4.7.0.12181 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'ruby' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'sonarkeywarepluginscxx' version : 1.0 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'sonarscala' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'sql' version : 1.3.0 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'text' version : 2.3.0.1632 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'vbnet' version : 9.8.0.76515 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'web' version : 3.9.0.3600 has not been found on the update center. +2024.01.14 16:12:15 INFO web[AY0HAompWaI2vBbzAAE6][o.s.u.c.UpdateCenter] The plugin 'xml' version : 2.10.0.4108 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'ABAP' version : 10.0.0 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'APEX' version : 10.0.0 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'ASP' version : 10.0.0 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'COBOL' version : 10.0.0 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'PLI' version : 10.0.0 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'RPG' version : 10.0.0 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'TSQL' version : 10.0.0 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'cayc' version : 2.1.0.500 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'config' version : 1.3.0.654 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'csharp' version : 9.8.0.76515 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'flex' version : 2.10.0.3458 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'go' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'iac' version : 1.20.0.5654 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'jacoco' version : 1.3.0.1538 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'java' version : 7.24.0.32100 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'javascript' version : 10.5.1.22382 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'keywareJavaPlugin' version : 1.0 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'kotlin' version : 2.17.0.2902 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'php' version : 3.32.0.10180 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'plsqlcop' version : 8.9.7 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'python' version : 4.7.0.12181 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'ruby' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'sonarkeywarepluginscxx' version : 1.0 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'sonarscala' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'sql' version : 1.3.0 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'text' version : 2.3.0.1632 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'vbnet' version : 9.8.0.76515 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'web' version : 3.9.0.3600 has not been found on the update center. +2024.01.14 16:12:17 INFO web[AY0HAompWaI2vBbzAAFR][o.s.u.c.UpdateCenter] The plugin 'xml' version : 2.10.0.4108 has not been found on the update center. +2024.01.14 16:50:23 INFO web[][o.s.p.ProcessEntryPoint] Gracefully stopping process +2024.01.14 16:50:23 INFO web[][o.s.s.n.NotificationDaemon] Notification service stopped +2024.01.14 16:50:23 INFO web[][c.z.h.HikariDataSource] HikariPool-1 - Shutdown initiated... +2024.01.14 16:50:23 INFO web[][c.z.h.HikariDataSource] HikariPool-1 - Shutdown completed. +2024.01.14 16:50:23 INFO web[][o.s.s.app.WebServer] Web Server stopped +2024.01.14 16:51:04 INFO web[][o.s.p.ProcessEntryPoint] Starting Web Server +2024.01.14 16:51:07 INFO web[][o.s.s.p.LogServerVersion] SonarQube Server / 10.2.1.78527 / 953bf4f6bc7c449ecd33704e5fb450c19412f037 +2024.01.14 16:51:07 INFO web[][o.s.d.DefaultDatabase] Create JDBC data source for jdbc:postgresql://172.16.36.5:5432/sonar-gx +2024.01.14 16:51:07 INFO web[][c.z.h.HikariDataSource] HikariPool-1 - Starting... +2024.01.14 16:51:08 INFO web[][c.z.h.p.HikariPool] HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@773dab28 +2024.01.14 16:51:08 INFO web[][c.z.h.HikariDataSource] HikariPool-1 - Start completed. +2024.01.14 16:51:09 INFO web[][o.s.s.p.ServerFileSystemImpl] SonarQube home: /mnt/d/.dev_env/sonarqube-10.2.1.78527 +2024.01.14 16:51:09 INFO web[][o.s.s.u.SystemPasscodeImpl] System authentication by passcode is disabled +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy C# Code Quality and Security / 9.8.0.76515 / c1515bad8ebe3e38e102b68fdec8c429669ec560 +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy C++ 信息安全性设计准则 / 1.0 / 1390585ba547ab6e3fe269c9d341cef06e44f08e +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy Checkstyle / 10.12.3 / +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy Chinese Pack / 10.2 / null +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy Clean as You Code / 2.1.0.500 / 4a2d47cf125d03ebacf43536a3897c168deb1b0a +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy Configuration detection for Code Quality and Security / 1.3.0.654 / 63073f0270b2c4754afa58eb8b5ea04e2eebf1a4 +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy Findbugs / 4.2.5 / +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy Flex Code Quality and Security / 2.10.0.3458 / 3ef14c50cfd03e5b40a2270fc6e8edc5c49dedcd +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy Go Code Quality and Security / 1.14.0.4481 / dcfff811316898a16bf1c6ff191dd3a5d84d3307 +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy Groovy / 1.8 / 6f5ddad1c7cf86e39cd9a8fc0be896660b4d4b61 +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy HTML Code Quality and Security / 3.9.0.3600 / c877f85377cbf43c325a924dff566e2511142dbd +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy IaC Code Quality and Security / 1.20.0.5654 / 45bdf29bcd98938351390d5b5905ee16e4616078 +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy JaCoCo / 1.3.0.1538 / 74a7798c7cea687c72ed9df40c93eb7ea2a58c49 +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy Java Code Quality and Security / 7.24.0.32100 / c39dafc9f60909db5edeb18ecc30ef617d9b5e7d +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy Java 安全性设计准则 / 1.0 / 5325a8a2ba0a1dd43823759afd160b13e8c8da99 +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy JavaScript/TypeScript/CSS Code Quality and Security / 10.5.1.22382 / aee0b6ea75d253c96e97ab00eb1e96e1112ec2a7 +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy Kotlin Code Quality and Security / 2.17.0.2902 / f561c3df92dca4379ae526fc4c912f786328f009 +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy MyBatis Plugin for SonarQube / 1.0.7 / null +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy PHP Code Quality and Security / 3.32.0.10180 / 077f75886ec0b948cdf94b61631a444bcd23a529 +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy Python Code Quality and Security / 4.7.0.12181 / eeaa409efe993ea779a0dacdbbe8e28e4879c975 +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy Ruby Code Quality and Security / 1.14.0.4481 / dcfff811316898a16bf1c6ff191dd3a5d84d3307 +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy SQL language plugin / 1.3.0 / null +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy Scala Code Quality and Security / 1.14.0.4481 / dcfff811316898a16bf1c6ff191dd3a5d84d3307 +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy Sonargraph Integration / 7.0.0 / null +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy Text Code Quality and Security / 2.3.0.1632 / 66d70521dd5e12993a5614c3202f4c33ae0182bd +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy VB.NET Code Quality and Security / 9.8.0.76515 / c1515bad8ebe3e38e102b68fdec8c429669ec560 +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy XML Code Quality and Security / 2.10.0.4108 / 34b16ba369117f6befc0b1e0866a069a80f6db2e +2024.01.14 16:51:10 INFO web[][o.s.s.p.ServerPluginManager] Deploy db* CODECOP for SonarQube (Standalone) / 8.9.7 / null +2024.01.14 16:52:03 INFO web[][o.s.s.p.d.m.c.PostgresCharsetHandler] Verify that database charset supports UTF8 +2024.01.14 16:52:03 INFO web[][o.s.s.e.EsClientProvider] Connected to local Elasticsearch: [http://localhost:9001] +2024.01.14 16:52:04 WARN web[][o.s.a.s.w.WebService$Action] Description is not set on action api/monitoring/metrics +2024.01.14 16:52:04 WARN web[][o.s.a.s.w.WebService$Action] Since is not set on action api/monitoring/metrics +2024.01.14 16:52:04 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/monitoring/metrics +2024.01.14 16:52:04 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/system/liveness +2024.01.14 16:52:04 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.platform.web.WebServiceFilter@987a0bb [pattern=UrlPattern{inclusions=[/api/system/migrate_db.*, ...], exclusions=[/api/components/update_key, ...]}] +2024.01.14 16:52:04 INFO web[][o.s.s.p.DetectPluginChange] Detect plugin changes +2024.01.14 16:52:05 INFO web[][c.t.s.p.PlSqlCopPlugin] define db* CODECOP plugIn (standalone) +2024.01.14 16:52:07 INFO web[][o.s.s.s.LogServerId] Server ID: 4737A3D5-AYzn9DVLFnwpAXZFxDyi +2024.01.14 16:52:07 WARN web[][o.s.s.a.LogOAuthWarning] For security reasons, OAuth authentication should use HTTPS. You should set the property 'Administration > Configuration > Server base URL' to a HTTPS URL. +2024.01.14 16:52:07 INFO web[][o.s.s.p.UpdateCenterClient] Update center: https://update.sonarsource.org/update-center.properties +2024.01.14 16:52:09 INFO web[][o.h.v.i.util.Version] HV000001: Hibernate Validator null +2024.01.14 16:52:09 INFO web[][o.s.s.a.EmbeddedTomcat] HTTP connector enabled on port 9000 +2024.01.14 16:52:15 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action saml/validation_init +2024.01.14 16:52:15 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/issues/list +2024.01.14 16:52:15 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/system/liveness +2024.01.14 16:52:15 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/plugins/download +2024.01.14 16:52:15 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/analysis_cache/get +2024.01.14 16:52:15 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/alm_integrations/check_pat +2024.01.14 16:52:15 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/push/sonarlint_events +2024.01.14 16:52:15 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/dismiss_message/check +2024.01.14 16:52:15 WARN web[][o.s.a.s.w.WebService$Action] Since is not set on action api/cayc/issues_creation_histogram +2024.01.14 16:52:15 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/cayc/issues_creation_histogram +2024.01.14 16:52:15 INFO web[][o.s.s.a.p.ExpiredSessionsCleaner] Purge of expired session tokens has removed 1 elements +2024.01.14 16:52:15 INFO web[][o.s.s.a.p.ExpiredSessionsCleaner] Purge of expired SAML message ids has removed 0 elements +2024.01.14 16:52:15 INFO web[][o.s.s.n.NotificationDaemon] Notification service started (delay 60 sec.) +2024.01.14 16:52:15 INFO web[][o.s.s.t.TelemetryDaemon] Sharing of SonarQube statistics is enabled. +2024.01.14 16:52:18 INFO web[][o.s.s.s.GeneratePluginIndex] Generate scanner plugin index +2024.01.14 16:52:18 INFO web[][c.h.s.i.s.SonargraphMetrics] Sonargraph Integration: Created 55 predefined and 0 custom metric(s) +2024.01.14 16:52:18 INFO web[][o.s.s.s.RegisterMetrics] Register metrics +2024.01.14 16:52:18 INFO web[][o.s.s.r.r.RulesRegistrant] Register rules +2024.01.14 16:52:20 INFO web[][c.h.s.i.s.SonargraphRulesProvider] Sonargraph Integration: Loaded standard rules file '/com/hello2morrow/sonargraph/integration/sonarqube/SonargraphRules.properties' +2024.01.14 16:52:20 INFO web[][c.h.s.i.s.SonargraphRulesProvider] Sonargraph Integration: No custom rules file found at '/home/ubuntu/.sonargraphintegration/SonargraphRules.properties' +2024.01.14 16:52:20 INFO web[][c.h.s.i.s.SonargraphRules] Sonargraph Integration: Created 18 predefined and 0 custom rule(s) +2024.01.14 16:52:20 INFO web[][c.h.s.i.s.SonargraphRulesProvider] Sonargraph Integration: Loaded standard rules file '/com/hello2morrow/sonargraph/integration/sonarqube/SonargraphRules.properties' +2024.01.14 16:52:20 INFO web[][c.h.s.i.s.SonargraphRulesProvider] Sonargraph Integration: No custom rules file found at '/home/ubuntu/.sonargraphintegration/SonargraphRules.properties' +2024.01.14 16:52:20 INFO web[][c.h.s.i.s.SonargraphRules] Sonargraph Integration: Created 18 predefined and 0 custom rule(s) +2024.01.14 16:52:21 INFO web[][o.r.Reflections] Reflections took 30 ms to scan 1 urls, producing 206 keys and 206 values +2024.01.14 16:52:24 INFO web[][c.t.s.p.ClassUtil] instantiate class com.trivadis.sonar.plugin.TrivadisGuidelines3ValidatorConfig +2024.01.14 16:52:24 INFO web[][c.t.s.p.PlSqlCopRules] load db* CODECOP rules from /TrivadisGuidelines3/genmodel/rules.xml +2024.01.14 16:52:24 INFO web[][c.t.s.p.PlSqlCopRules] load db* CODECOP SQALE model from /TrivadisGuidelines3/genmodel/plsqlcop-model.xml +2024.01.14 16:52:33 INFO web[][o.s.s.q.b.BuiltInQProfileRepositoryImpl] Load quality profiles +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule ARCHITECTURE_VIOLATION in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_MODULE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_NAMESPACE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_COMPONENT_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION_ERROR in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule TODO in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DELETE_REFACTORING in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_REFACTORING in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_RENAME_REFACTORING in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule RENAME_REFACTORING in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DUPLICATE_CODE_BLOCK in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule QUALITY_GATE_ISSUE in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] Sonargraph Integration: Profile created +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule ARCHITECTURE_VIOLATION in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_MODULE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_NAMESPACE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_COMPONENT_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION_ERROR in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule TODO in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DELETE_REFACTORING in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_REFACTORING in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_RENAME_REFACTORING in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule RENAME_REFACTORING in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DUPLICATE_CODE_BLOCK in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule QUALITY_GATE_ISSUE in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MODULE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule NAMESPACE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule COMPONENT_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION in repo sonargraphintegration +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] Sonargraph Integration (Strict): Profile created +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule ARCHITECTURE_VIOLATION in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_MODULE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_NAMESPACE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_COMPONENT_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION_ERROR in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule TODO in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DELETE_REFACTORING in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_REFACTORING in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_RENAME_REFACTORING in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule RENAME_REFACTORING in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DUPLICATE_CODE_BLOCK in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule QUALITY_GATE_ISSUE in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] Sonargraph Integration C#: Profile created +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule ARCHITECTURE_VIOLATION in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_MODULE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_NAMESPACE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_COMPONENT_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION_ERROR in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule TODO in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DELETE_REFACTORING in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_REFACTORING in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_RENAME_REFACTORING in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule RENAME_REFACTORING in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DUPLICATE_CODE_BLOCK in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule QUALITY_GATE_ISSUE in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MODULE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule NAMESPACE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule COMPONENT_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION in repo sonargraphintegration_cs +2024.01.14 16:52:33 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] Sonargraph Integration C# (Strict): Profile created +2024.01.14 16:52:34 INFO web[][c.t.s.p.ClassUtil] instantiate class com.trivadis.sonar.plugin.TrivadisGuidelines3ValidatorConfig +2024.01.14 16:52:34 INFO web[][c.t.s.p.ClassUtil] instantiate class com.trivadis.tvdcc.validators.TrivadisGuidelines3 +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-0000 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1010 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1020 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1030 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1040 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1050 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1060 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1070 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2110 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2120 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-2130 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2140 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2150 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2160 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2170 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2180 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2185 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2190 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2210 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2220 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2310 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2320 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2330 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2340 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2410 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2510 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3110 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3120 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3130 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3140 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3210 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4110 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4120 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4130 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4140 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4210 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4220 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4230 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4240 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4310 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4320 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4330 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4340 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4350 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4360 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4370 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4375 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4380 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4385 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4390 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4395 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5020 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5030 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5040 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5050 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5060 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5070 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-6010 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-6020 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7110 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7120 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7130 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7140 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7150 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7210 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7220 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7230 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7160 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7310 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7320 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7410 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7430 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7420 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7440 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7450 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7510 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7710 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-8110 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-8210 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1080 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2135 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2145 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2230 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2610 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3115 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3145 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3150 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-3160 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-3170 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3180 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3182 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3183 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3185 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3190 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3195 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3220 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3310 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3320 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4250 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4260 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4270 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4325 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4365 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-5010 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5080 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7125 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-7170 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7250 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7330 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-7460 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7720 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7730 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-7740 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7810 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7910 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-8120 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-8310 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-8410 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-8510 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-9010 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-9020 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-9030 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-9040 in profile db* CODECOP +2024.01.14 16:52:34 INFO web[][o.s.s.q.RegisterQualityProfiles] Register quality profiles +2024.01.14 16:52:34 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile kubernetes/Sonar way +2024.01.14 16:52:34 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile css/Sonar way +2024.01.14 16:52:34 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile scala/Sonar way +2024.01.14 16:52:34 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile scala/FindBugs Security Scala +2024.01.14 16:52:34 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile jsp/Sonar way +2024.01.14 16:52:34 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile jsp/FindBugs Security JSP +2024.01.14 16:52:34 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile js/Sonar way +2024.01.14 16:52:35 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile py/Sonar way +2024.01.14 16:52:35 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile apex/FooLint Rules +2024.01.14 16:52:35 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile sql/SQL rules +2024.01.14 16:52:35 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile docker/Sonar way +2024.01.14 16:52:35 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/Java信息安全设计准则 +2024.01.14 16:52:35 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/Sonar way +2024.01.14 16:52:35 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/Sonargraph Integration +2024.01.14 16:52:35 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/Sonargraph Integration (Strict) +2024.01.14 16:52:35 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/FindBugs +2024.01.14 16:52:35 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/FindBugs + FB-Contrib +2024.01.14 16:52:36 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/FindBugs Security Audit +2024.01.14 16:52:36 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/FindBugs Security Minimal +2024.01.14 16:52:36 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile web/Sonar way +2024.01.14 16:52:36 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile flex/Sonar way +2024.01.14 16:52:36 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile xml/MyBatisLint Rules +2024.01.14 16:52:36 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile xml/Sonar way +2024.01.14 16:52:36 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile json/Sonar way +2024.01.14 16:52:36 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile text/Sonar way +2024.01.14 16:52:36 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile vbnet/Sonar way +2024.01.14 16:52:36 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile grvy/Sonar way +2024.01.14 16:52:36 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cloudformation/Sonar way +2024.01.14 16:52:36 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile yaml/Sonar way +2024.01.14 16:52:36 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cxx/Sonar way +2024.01.14 16:52:36 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cxx/C++信息安全性设计准则 +2024.01.14 16:52:36 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile kotlin/Sonar way +2024.01.14 16:52:36 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile go/Sonar way +2024.01.14 16:52:36 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile rpg/FooLint Rules +2024.01.14 16:52:36 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile tsql/FooLint Rules +2024.01.14 16:52:36 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile pli/FooLint Rules +2024.01.14 16:52:37 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile secrets/Sonar way +2024.01.14 16:52:37 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile ruby/Sonar way +2024.01.14 16:52:37 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cs/Sonar way +2024.01.14 16:52:37 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cs/Sonargraph Integration C# +2024.01.14 16:52:37 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cs/Sonargraph Integration C# (Strict) +2024.01.14 16:52:37 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cobol/FooLint Rules +2024.01.14 16:52:37 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile php/Sonar way +2024.01.14 16:52:37 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile terraform/Sonar way +2024.01.14 16:52:37 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile azureresourcemanager/Sonar way +2024.01.14 16:52:37 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile abap/FooLint Rules +2024.01.14 16:52:37 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile plsqlcop/db* CODECOP +2024.01.14 16:52:37 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile ts/Sonar way +2024.01.14 16:52:37 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile asp/FooLint Rules +2024.01.14 16:52:38 INFO web[][o.s.s.s.RegisterPermissionTemplates] Register permission templates +2024.01.14 16:52:38 INFO web[][o.s.s.s.RenameDeprecatedPropertyKeys] Rename deprecated property keys +2024.01.14 16:52:38 INFO web[][o.s.s.s.RegisterPlugins] Register plugins +2024.01.14 16:52:38 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.platform.web.SonarLintConnectionFilter@4e15275b [pattern=UrlPattern{inclusions=[/api/*], exclusions=[/api/v2/*]}] +2024.01.14 16:52:38 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.platform.web.WebServiceFilter@69b5acbf [pattern=UrlPattern{inclusions=[/api/issues/delete_comment.*, ...], exclusions=[/api/authentication/login.*, ...]}] +2024.01.14 16:52:38 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.platform.web.WebServiceReroutingFilter@29d6eb40 [pattern=UrlPattern{inclusions=[/api/components/update_key, ...], exclusions=[]}] +2024.01.14 16:52:38 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.DefaultAdminCredentialsVerifierFilter@19589e24 [pattern=UrlPattern{inclusions=[/*], exclusions=[*.css, ...]}] +2024.01.14 16:52:38 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.InitFilter@7e105dab [pattern=UrlPattern{inclusions=[/sessions/init/*], exclusions=[]}] +2024.01.14 16:52:38 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.SamlValidationRedirectionFilter@3a04c682 [pattern=UrlPattern{inclusions=[/oauth2/callback/saml], exclusions=[]}] +2024.01.14 16:52:38 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.OAuth2CallbackFilter@2416a669 [pattern=UrlPattern{inclusions=[/oauth2/callback/*], exclusions=[]}] +2024.01.14 16:52:38 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.ResetPasswordFilter@79e2a571 [pattern=UrlPattern{inclusions=[/*], exclusions=[*.css, ...]}] +2024.01.14 16:52:38 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.ws.LoginAction@1e3613e3 [pattern=UrlPattern{inclusions=[/api/authentication/login], exclusions=[]}] +2024.01.14 16:52:38 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.ws.LogoutAction@2db725a [pattern=UrlPattern{inclusions=[/api/authentication/logout], exclusions=[]}] +2024.01.14 16:52:38 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.ws.ValidateAction@1661089 [pattern=UrlPattern{inclusions=[/api/authentication/validate], exclusions=[]}] +2024.01.14 16:52:38 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.saml.ws.ValidationInitAction@22c983ea [pattern=UrlPattern{inclusions=[/saml/validation_init], exclusions=[]}] +2024.01.14 16:52:38 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.saml.ws.ValidationAction@5fb9a55 [pattern=UrlPattern{inclusions=[/saml/validation], exclusions=[]}] +2024.01.14 16:52:38 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.user.ws.ChangePasswordAction@56342e3 [pattern=UrlPattern{inclusions=[/api/users/change_password], exclusions=[]}] +2024.01.14 16:52:38 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.plugins.PluginsRiskConsentFilter@194fb41b [pattern=UrlPattern{inclusions=[/*], exclusions=[*.css, ...]}] +2024.01.14 16:52:38 INFO web[][o.s.s.p.p.PlatformLevelStartup] Running Community Edition +2024.01.14 16:52:38 INFO web[][o.s.s.p.Platform] Web Server is operational +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'ABAP' version : 10.0.0 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'APEX' version : 10.0.0 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'ASP' version : 10.0.0 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'COBOL' version : 10.0.0 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'PLI' version : 10.0.0 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'RPG' version : 10.0.0 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'TSQL' version : 10.0.0 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'cayc' version : 2.1.0.500 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'config' version : 1.3.0.654 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'csharp' version : 9.8.0.76515 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'flex' version : 2.10.0.3458 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'go' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'iac' version : 1.20.0.5654 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'jacoco' version : 1.3.0.1538 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'java' version : 7.24.0.32100 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'javascript' version : 10.5.1.22382 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'keywareJavaPlugin' version : 1.0 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'kotlin' version : 2.17.0.2902 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'php' version : 3.32.0.10180 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'plsqlcop' version : 8.9.7 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'python' version : 4.7.0.12181 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'ruby' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'sonarkeywarepluginscxx' version : 1.0 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'sonarscala' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'sql' version : 1.3.0 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'text' version : 2.3.0.1632 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'vbnet' version : 9.8.0.76515 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'web' version : 3.9.0.3600 has not been found on the update center. +2024.01.14 16:53:05 INFO web[AY0HLFEkqJpWeBBdAAAQ][o.s.u.c.UpdateCenter] The plugin 'xml' version : 2.10.0.4108 has not been found on the update center. +2024.01.14 17:21:40 INFO web[][o.s.p.ProcessEntryPoint] Gracefully stopping process +2024.01.14 17:21:40 INFO web[][o.s.s.n.NotificationDaemon] Notification service stopped +2024.01.14 17:21:40 INFO web[][c.z.h.HikariDataSource] HikariPool-1 - Shutdown initiated... +2024.01.14 17:21:40 INFO web[][c.z.h.HikariDataSource] HikariPool-1 - Shutdown completed. +2024.01.14 17:21:40 INFO web[][o.s.s.app.WebServer] Web Server stopped +2024.01.14 17:22:14 INFO web[][o.s.p.ProcessEntryPoint] Starting Web Server +2024.01.14 17:22:17 INFO web[][o.s.s.p.LogServerVersion] SonarQube Server / 10.2.1.78527 / 953bf4f6bc7c449ecd33704e5fb450c19412f037 +2024.01.14 17:22:17 INFO web[][o.s.d.DefaultDatabase] Create JDBC data source for jdbc:postgresql://172.16.36.5:5432/sonar-gx +2024.01.14 17:22:17 INFO web[][c.z.h.HikariDataSource] HikariPool-1 - Starting... +2024.01.14 17:22:17 INFO web[][c.z.h.p.HikariPool] HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@773dab28 +2024.01.14 17:22:17 INFO web[][c.z.h.HikariDataSource] HikariPool-1 - Start completed. +2024.01.14 17:22:18 INFO web[][o.s.s.p.ServerFileSystemImpl] SonarQube home: /mnt/d/.dev_env/sonarqube-10.2.1.78527 +2024.01.14 17:22:18 INFO web[][o.s.s.u.SystemPasscodeImpl] System authentication by passcode is disabled +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy C# Code Quality and Security / 9.8.0.76515 / c1515bad8ebe3e38e102b68fdec8c429669ec560 +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy C++ 信息安全性设计准则 / 1.0 / 1390585ba547ab6e3fe269c9d341cef06e44f08e +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy Checkstyle / 10.12.3 / +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy Chinese Pack / 10.2 / null +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy Clean as You Code / 2.1.0.500 / 4a2d47cf125d03ebacf43536a3897c168deb1b0a +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy Configuration detection for Code Quality and Security / 1.3.0.654 / 63073f0270b2c4754afa58eb8b5ea04e2eebf1a4 +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy Findbugs / 4.2.5 / +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy Flex Code Quality and Security / 2.10.0.3458 / 3ef14c50cfd03e5b40a2270fc6e8edc5c49dedcd +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy Go Code Quality and Security / 1.14.0.4481 / dcfff811316898a16bf1c6ff191dd3a5d84d3307 +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy Groovy / 1.8 / 6f5ddad1c7cf86e39cd9a8fc0be896660b4d4b61 +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy HTML Code Quality and Security / 3.9.0.3600 / c877f85377cbf43c325a924dff566e2511142dbd +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy IaC Code Quality and Security / 1.20.0.5654 / 45bdf29bcd98938351390d5b5905ee16e4616078 +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy JaCoCo / 1.3.0.1538 / 74a7798c7cea687c72ed9df40c93eb7ea2a58c49 +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy Java Code Quality and Security / 7.24.0.32100 / c39dafc9f60909db5edeb18ecc30ef617d9b5e7d +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy Java 安全性设计准则 / 1.0 / 5325a8a2ba0a1dd43823759afd160b13e8c8da99 +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy JavaScript/TypeScript/CSS Code Quality and Security / 10.5.1.22382 / aee0b6ea75d253c96e97ab00eb1e96e1112ec2a7 +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy Kotlin Code Quality and Security / 2.17.0.2902 / f561c3df92dca4379ae526fc4c912f786328f009 +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy MyBatis Plugin for SonarQube / 1.0.7 / null +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy PHP Code Quality and Security / 3.32.0.10180 / 077f75886ec0b948cdf94b61631a444bcd23a529 +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy Python Code Quality and Security / 4.7.0.12181 / eeaa409efe993ea779a0dacdbbe8e28e4879c975 +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy Ruby Code Quality and Security / 1.14.0.4481 / dcfff811316898a16bf1c6ff191dd3a5d84d3307 +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy SQL language plugin / 1.3.0 / null +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy Scala Code Quality and Security / 1.14.0.4481 / dcfff811316898a16bf1c6ff191dd3a5d84d3307 +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy Sonargraph Integration / 7.0.0 / null +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy Text Code Quality and Security / 2.3.0.1632 / 66d70521dd5e12993a5614c3202f4c33ae0182bd +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy VB.NET Code Quality and Security / 9.8.0.76515 / c1515bad8ebe3e38e102b68fdec8c429669ec560 +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy XML Code Quality and Security / 2.10.0.4108 / 34b16ba369117f6befc0b1e0866a069a80f6db2e +2024.01.14 17:22:19 INFO web[][o.s.s.p.ServerPluginManager] Deploy db* CODECOP for SonarQube (Standalone) / 8.9.7 / null +2024.01.14 17:23:12 INFO web[][o.s.s.p.d.m.c.PostgresCharsetHandler] Verify that database charset supports UTF8 +2024.01.14 17:23:13 INFO web[][o.s.s.e.EsClientProvider] Connected to local Elasticsearch: [http://localhost:9001] +2024.01.14 17:23:13 WARN web[][o.s.a.s.w.WebService$Action] Description is not set on action api/monitoring/metrics +2024.01.14 17:23:13 WARN web[][o.s.a.s.w.WebService$Action] Since is not set on action api/monitoring/metrics +2024.01.14 17:23:13 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/monitoring/metrics +2024.01.14 17:23:13 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/system/liveness +2024.01.14 17:23:13 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.platform.web.WebServiceFilter@5a7b6b75 [pattern=UrlPattern{inclusions=[/api/system/migrate_db.*, ...], exclusions=[/api/components/update_key, ...]}] +2024.01.14 17:23:13 INFO web[][o.s.s.p.DetectPluginChange] Detect plugin changes +2024.01.14 17:23:15 INFO web[][c.t.s.p.PlSqlCopPlugin] define db* CODECOP plugIn (standalone) +2024.01.14 17:23:16 INFO web[][o.s.s.s.LogServerId] Server ID: 4737A3D5-AYzn9DVLFnwpAXZFxDyi +2024.01.14 17:23:16 WARN web[][o.s.s.a.LogOAuthWarning] For security reasons, OAuth authentication should use HTTPS. You should set the property 'Administration > Configuration > Server base URL' to a HTTPS URL. +2024.01.14 17:23:16 INFO web[][o.s.s.p.UpdateCenterClient] Update center: https://update.sonarsource.org/update-center.properties +2024.01.14 17:23:18 INFO web[][o.h.v.i.util.Version] HV000001: Hibernate Validator null +2024.01.14 17:23:19 INFO web[][o.s.s.a.EmbeddedTomcat] HTTP connector enabled on port 9000 +2024.01.14 17:23:24 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action saml/validation_init +2024.01.14 17:23:24 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/issues/list +2024.01.14 17:23:24 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/system/liveness +2024.01.14 17:23:24 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/plugins/download +2024.01.14 17:23:24 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/analysis_cache/get +2024.01.14 17:23:24 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/alm_integrations/check_pat +2024.01.14 17:23:24 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/push/sonarlint_events +2024.01.14 17:23:24 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/dismiss_message/check +2024.01.14 17:23:24 WARN web[][o.s.a.s.w.WebService$Action] Since is not set on action api/cayc/issues_creation_histogram +2024.01.14 17:23:24 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/cayc/issues_creation_histogram +2024.01.14 17:23:24 INFO web[][o.s.s.a.p.ExpiredSessionsCleaner] Purge of expired session tokens has removed 0 elements +2024.01.14 17:23:24 INFO web[][o.s.s.a.p.ExpiredSessionsCleaner] Purge of expired SAML message ids has removed 0 elements +2024.01.14 17:23:24 INFO web[][o.s.s.n.NotificationDaemon] Notification service started (delay 60 sec.) +2024.01.14 17:23:24 INFO web[][o.s.s.t.TelemetryDaemon] Sharing of SonarQube statistics is enabled. +2024.01.14 17:23:27 INFO web[][o.s.s.s.GeneratePluginIndex] Generate scanner plugin index +2024.01.14 17:23:27 INFO web[][c.h.s.i.s.SonargraphMetrics] Sonargraph Integration: Created 55 predefined and 0 custom metric(s) +2024.01.14 17:23:27 INFO web[][o.s.s.s.RegisterMetrics] Register metrics +2024.01.14 17:23:27 INFO web[][o.s.s.r.r.RulesRegistrant] Register rules +2024.01.14 17:23:30 INFO web[][c.h.s.i.s.SonargraphRulesProvider] Sonargraph Integration: Loaded standard rules file '/com/hello2morrow/sonargraph/integration/sonarqube/SonargraphRules.properties' +2024.01.14 17:23:30 INFO web[][c.h.s.i.s.SonargraphRulesProvider] Sonargraph Integration: No custom rules file found at '/home/ubuntu/.sonargraphintegration/SonargraphRules.properties' +2024.01.14 17:23:30 INFO web[][c.h.s.i.s.SonargraphRules] Sonargraph Integration: Created 18 predefined and 0 custom rule(s) +2024.01.14 17:23:30 INFO web[][c.h.s.i.s.SonargraphRulesProvider] Sonargraph Integration: Loaded standard rules file '/com/hello2morrow/sonargraph/integration/sonarqube/SonargraphRules.properties' +2024.01.14 17:23:30 INFO web[][c.h.s.i.s.SonargraphRulesProvider] Sonargraph Integration: No custom rules file found at '/home/ubuntu/.sonargraphintegration/SonargraphRules.properties' +2024.01.14 17:23:30 INFO web[][c.h.s.i.s.SonargraphRules] Sonargraph Integration: Created 18 predefined and 0 custom rule(s) +2024.01.14 17:23:30 INFO web[][o.r.Reflections] Reflections took 17 ms to scan 1 urls, producing 206 keys and 206 values +2024.01.14 17:23:34 INFO web[][c.t.s.p.ClassUtil] instantiate class com.trivadis.sonar.plugin.TrivadisGuidelines3ValidatorConfig +2024.01.14 17:23:34 INFO web[][c.t.s.p.PlSqlCopRules] load db* CODECOP rules from /TrivadisGuidelines3/genmodel/rules.xml +2024.01.14 17:23:34 INFO web[][c.t.s.p.PlSqlCopRules] load db* CODECOP SQALE model from /TrivadisGuidelines3/genmodel/plsqlcop-model.xml +2024.01.14 17:23:42 INFO web[][o.s.s.q.b.BuiltInQProfileRepositoryImpl] Load quality profiles +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule ARCHITECTURE_VIOLATION in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_MODULE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_NAMESPACE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_COMPONENT_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION_ERROR in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule TODO in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DELETE_REFACTORING in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_REFACTORING in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_RENAME_REFACTORING in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule RENAME_REFACTORING in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DUPLICATE_CODE_BLOCK in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule QUALITY_GATE_ISSUE in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] Sonargraph Integration: Profile created +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule ARCHITECTURE_VIOLATION in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_MODULE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_NAMESPACE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_COMPONENT_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION_ERROR in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule TODO in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DELETE_REFACTORING in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_REFACTORING in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_RENAME_REFACTORING in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule RENAME_REFACTORING in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DUPLICATE_CODE_BLOCK in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule QUALITY_GATE_ISSUE in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MODULE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule NAMESPACE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule COMPONENT_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION in repo sonargraphintegration +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] Sonargraph Integration (Strict): Profile created +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule ARCHITECTURE_VIOLATION in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_MODULE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_NAMESPACE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_COMPONENT_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION_ERROR in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule TODO in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DELETE_REFACTORING in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_REFACTORING in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_RENAME_REFACTORING in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule RENAME_REFACTORING in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DUPLICATE_CODE_BLOCK in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule QUALITY_GATE_ISSUE in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] Sonargraph Integration C#: Profile created +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule ARCHITECTURE_VIOLATION in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_MODULE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_NAMESPACE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_COMPONENT_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION_ERROR in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule TODO in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DELETE_REFACTORING in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_REFACTORING in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_RENAME_REFACTORING in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule RENAME_REFACTORING in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DUPLICATE_CODE_BLOCK in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule QUALITY_GATE_ISSUE in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MODULE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule NAMESPACE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule COMPONENT_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION in repo sonargraphintegration_cs +2024.01.14 17:23:42 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] Sonargraph Integration C# (Strict): Profile created +2024.01.14 17:23:43 INFO web[][c.t.s.p.ClassUtil] instantiate class com.trivadis.sonar.plugin.TrivadisGuidelines3ValidatorConfig +2024.01.14 17:23:43 INFO web[][c.t.s.p.ClassUtil] instantiate class com.trivadis.tvdcc.validators.TrivadisGuidelines3 +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-0000 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1010 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1020 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1030 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1040 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1050 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1060 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1070 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2110 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2120 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-2130 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2140 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2150 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2160 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2170 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2180 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2185 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2190 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2210 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2220 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2310 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2320 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2330 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2340 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2410 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2510 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3110 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3120 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3130 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3140 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3210 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4110 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4120 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4130 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4140 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4210 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4220 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4230 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4240 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4310 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4320 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4330 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4340 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4350 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4360 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4370 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4375 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4380 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4385 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4390 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4395 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5020 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5030 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5040 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5050 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5060 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5070 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-6010 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-6020 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7110 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7120 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7130 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7140 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7150 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7210 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7220 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7230 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7160 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7310 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7320 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7410 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7430 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7420 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7440 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7450 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7510 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7710 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-8110 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-8210 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1080 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2135 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2145 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2230 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2610 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3115 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3145 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3150 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-3160 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-3170 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3180 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3182 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3183 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3185 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3190 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3195 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3220 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3310 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3320 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4250 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4260 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4270 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4325 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4365 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-5010 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5080 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7125 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-7170 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7250 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7330 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-7460 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7720 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7730 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-7740 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7810 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7910 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-8120 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-8310 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-8410 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-8510 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-9010 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-9020 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-9030 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-9040 in profile db* CODECOP +2024.01.14 17:23:43 INFO web[][o.s.s.q.RegisterQualityProfiles] Register quality profiles +2024.01.14 17:23:43 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile kubernetes/Sonar way +2024.01.14 17:23:43 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile css/Sonar way +2024.01.14 17:23:43 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile scala/Sonar way +2024.01.14 17:23:43 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile scala/FindBugs Security Scala +2024.01.14 17:23:44 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile jsp/Sonar way +2024.01.14 17:23:44 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile jsp/FindBugs Security JSP +2024.01.14 17:23:44 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile js/Sonar way +2024.01.14 17:23:44 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile py/Sonar way +2024.01.14 17:23:44 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile apex/FooLint Rules +2024.01.14 17:23:44 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile sql/SQL rules +2024.01.14 17:23:44 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile docker/Sonar way +2024.01.14 17:23:44 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/Java信息安全设计准则 +2024.01.14 17:23:44 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/Sonar way +2024.01.14 17:23:45 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/Sonargraph Integration +2024.01.14 17:23:45 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/Sonargraph Integration (Strict) +2024.01.14 17:23:45 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/FindBugs +2024.01.14 17:23:45 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/FindBugs + FB-Contrib +2024.01.14 17:23:45 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/FindBugs Security Audit +2024.01.14 17:23:45 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/FindBugs Security Minimal +2024.01.14 17:23:45 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile web/Sonar way +2024.01.14 17:23:45 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile flex/Sonar way +2024.01.14 17:23:45 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile xml/MyBatisLint Rules +2024.01.14 17:23:45 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile xml/Sonar way +2024.01.14 17:23:45 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile json/Sonar way +2024.01.14 17:23:45 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile text/Sonar way +2024.01.14 17:23:45 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile vbnet/Sonar way +2024.01.14 17:23:45 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile grvy/Sonar way +2024.01.14 17:23:46 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cloudformation/Sonar way +2024.01.14 17:23:46 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile yaml/Sonar way +2024.01.14 17:23:46 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cxx/Sonar way +2024.01.14 17:23:46 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cxx/C++信息安全性设计准则 +2024.01.14 17:23:46 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile kotlin/Sonar way +2024.01.14 17:23:46 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile go/Sonar way +2024.01.14 17:23:46 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile rpg/FooLint Rules +2024.01.14 17:23:46 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile tsql/FooLint Rules +2024.01.14 17:23:46 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile pli/FooLint Rules +2024.01.14 17:23:46 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile secrets/Sonar way +2024.01.14 17:23:46 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile ruby/Sonar way +2024.01.14 17:23:46 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cs/Sonar way +2024.01.14 17:23:46 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cs/Sonargraph Integration C# +2024.01.14 17:23:46 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cs/Sonargraph Integration C# (Strict) +2024.01.14 17:23:46 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cobol/FooLint Rules +2024.01.14 17:23:46 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile php/Sonar way +2024.01.14 17:23:46 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile terraform/Sonar way +2024.01.14 17:23:46 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile azureresourcemanager/Sonar way +2024.01.14 17:23:46 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile abap/FooLint Rules +2024.01.14 17:23:46 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile plsqlcop/db* CODECOP +2024.01.14 17:23:47 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile ts/Sonar way +2024.01.14 17:23:47 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile asp/FooLint Rules +2024.01.14 17:23:47 INFO web[][o.s.s.s.RegisterPermissionTemplates] Register permission templates +2024.01.14 17:23:47 INFO web[][o.s.s.s.RenameDeprecatedPropertyKeys] Rename deprecated property keys +2024.01.14 17:23:47 INFO web[][o.s.s.s.RegisterPlugins] Register plugins +2024.01.14 17:23:47 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.platform.web.SonarLintConnectionFilter@25b915fe [pattern=UrlPattern{inclusions=[/api/*], exclusions=[/api/v2/*]}] +2024.01.14 17:23:47 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.platform.web.WebServiceFilter@652f5b56 [pattern=UrlPattern{inclusions=[/api/issues/delete_comment.*, ...], exclusions=[/api/authentication/login.*, ...]}] +2024.01.14 17:23:47 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.platform.web.WebServiceReroutingFilter@72f510c8 [pattern=UrlPattern{inclusions=[/api/components/update_key, ...], exclusions=[]}] +2024.01.14 17:23:47 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.DefaultAdminCredentialsVerifierFilter@7a481ae5 [pattern=UrlPattern{inclusions=[/*], exclusions=[*.css, ...]}] +2024.01.14 17:23:47 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.InitFilter@1733f6b7 [pattern=UrlPattern{inclusions=[/sessions/init/*], exclusions=[]}] +2024.01.14 17:23:47 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.SamlValidationRedirectionFilter@859faec [pattern=UrlPattern{inclusions=[/oauth2/callback/saml], exclusions=[]}] +2024.01.14 17:23:47 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.OAuth2CallbackFilter@52f0d87f [pattern=UrlPattern{inclusions=[/oauth2/callback/*], exclusions=[]}] +2024.01.14 17:23:47 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.ResetPasswordFilter@68d56ff6 [pattern=UrlPattern{inclusions=[/*], exclusions=[*.css, ...]}] +2024.01.14 17:23:47 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.ws.LoginAction@a0bba4 [pattern=UrlPattern{inclusions=[/api/authentication/login], exclusions=[]}] +2024.01.14 17:23:47 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.ws.LogoutAction@8fdd790 [pattern=UrlPattern{inclusions=[/api/authentication/logout], exclusions=[]}] +2024.01.14 17:23:47 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.ws.ValidateAction@7c113d0f [pattern=UrlPattern{inclusions=[/api/authentication/validate], exclusions=[]}] +2024.01.14 17:23:47 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.saml.ws.ValidationInitAction@4a8a649 [pattern=UrlPattern{inclusions=[/saml/validation_init], exclusions=[]}] +2024.01.14 17:23:47 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.saml.ws.ValidationAction@300f01d3 [pattern=UrlPattern{inclusions=[/saml/validation], exclusions=[]}] +2024.01.14 17:23:47 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.user.ws.ChangePasswordAction@605baa15 [pattern=UrlPattern{inclusions=[/api/users/change_password], exclusions=[]}] +2024.01.14 17:23:47 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.plugins.PluginsRiskConsentFilter@2712b268 [pattern=UrlPattern{inclusions=[/*], exclusions=[*.css, ...]}] +2024.01.14 17:23:47 INFO web[][o.s.s.p.p.PlatformLevelStartup] Running Community Edition +2024.01.14 17:23:47 INFO web[][o.s.s.p.Platform] Web Server is operational +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'ABAP' version : 10.0.0 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'APEX' version : 10.0.0 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'ASP' version : 10.0.0 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'COBOL' version : 10.0.0 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'PLI' version : 10.0.0 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'RPG' version : 10.0.0 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'TSQL' version : 10.0.0 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'cayc' version : 2.1.0.500 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'config' version : 1.3.0.654 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'csharp' version : 9.8.0.76515 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'flex' version : 2.10.0.3458 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'go' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'iac' version : 1.20.0.5654 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'jacoco' version : 1.3.0.1538 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'java' version : 7.24.0.32100 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'javascript' version : 10.5.1.22382 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'keywareJavaPlugin' version : 1.0 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'kotlin' version : 2.17.0.2902 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'php' version : 3.32.0.10180 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'plsqlcop' version : 8.9.7 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'python' version : 4.7.0.12181 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'ruby' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'sonarkeywarepluginscxx' version : 1.0 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'sonarscala' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'sql' version : 1.3.0 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'text' version : 2.3.0.1632 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'vbnet' version : 9.8.0.76515 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'web' version : 3.9.0.3600 has not been found on the update center. +2024.01.14 17:30:03 INFO web[AY0HTnOOBNMa9pRhAAAP][o.s.u.c.UpdateCenter] The plugin 'xml' version : 2.10.0.4108 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'ABAP' version : 10.0.0 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'APEX' version : 10.0.0 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'ASP' version : 10.0.0 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'COBOL' version : 10.0.0 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'PLI' version : 10.0.0 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'RPG' version : 10.0.0 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'TSQL' version : 10.0.0 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'cayc' version : 2.1.0.500 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'config' version : 1.3.0.654 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'csharp' version : 9.8.0.76515 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'flex' version : 2.10.0.3458 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'go' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'iac' version : 1.20.0.5654 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'jacoco' version : 1.3.0.1538 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'java' version : 7.24.0.32100 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'javascript' version : 10.5.1.22382 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'keywareJavaPlugin' version : 1.0 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'kotlin' version : 2.17.0.2902 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'php' version : 3.32.0.10180 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'plsqlcop' version : 8.9.7 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'python' version : 4.7.0.12181 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'ruby' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'sonarkeywarepluginscxx' version : 1.0 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'sonarscala' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'sql' version : 1.3.0 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'text' version : 2.3.0.1632 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'vbnet' version : 9.8.0.76515 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'web' version : 3.9.0.3600 has not been found on the update center. +2024.01.14 17:38:12 INFO web[AY0HTnOOBNMa9pRhAADV][o.s.u.c.UpdateCenter] The plugin 'xml' version : 2.10.0.4108 has not been found on the update center. +2024.01.14 17:48:40 INFO web[][o.s.p.ProcessEntryPoint] Gracefully stopping process +2024.01.14 17:48:40 INFO web[][o.s.s.n.NotificationDaemon] Notification service stopped +2024.01.14 17:48:41 INFO web[][c.z.h.HikariDataSource] HikariPool-1 - Shutdown initiated... +2024.01.14 17:48:41 INFO web[][c.z.h.HikariDataSource] HikariPool-1 - Shutdown completed. +2024.01.14 17:48:41 INFO web[][o.s.s.app.WebServer] Web Server stopped +2024.01.14 17:49:13 INFO web[][o.s.p.ProcessEntryPoint] Starting Web Server +2024.01.14 17:49:15 INFO web[][o.s.s.p.LogServerVersion] SonarQube Server / 10.2.1.78527 / 953bf4f6bc7c449ecd33704e5fb450c19412f037 +2024.01.14 17:49:15 INFO web[][o.s.d.DefaultDatabase] Create JDBC data source for jdbc:postgresql://172.16.36.5:5432/sonar-gx +2024.01.14 17:49:15 INFO web[][c.z.h.HikariDataSource] HikariPool-1 - Starting... +2024.01.14 17:49:16 INFO web[][c.z.h.p.HikariPool] HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@773dab28 +2024.01.14 17:49:16 INFO web[][c.z.h.HikariDataSource] HikariPool-1 - Start completed. +2024.01.14 17:49:17 INFO web[][o.s.s.p.ServerFileSystemImpl] SonarQube home: /mnt/d/.dev_env/sonarqube-10.2.1.78527 +2024.01.14 17:49:17 INFO web[][o.s.s.u.SystemPasscodeImpl] System authentication by passcode is disabled +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy C# Code Quality and Security / 9.8.0.76515 / c1515bad8ebe3e38e102b68fdec8c429669ec560 +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy C++ 信息安全性设计准则 / 1.0 / 1390585ba547ab6e3fe269c9d341cef06e44f08e +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy Checkstyle / 10.12.3 / +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy Chinese Pack / 10.2 / null +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy Clean as You Code / 2.1.0.500 / 4a2d47cf125d03ebacf43536a3897c168deb1b0a +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy Configuration detection for Code Quality and Security / 1.3.0.654 / 63073f0270b2c4754afa58eb8b5ea04e2eebf1a4 +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy Findbugs / 4.2.5 / +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy Flex Code Quality and Security / 2.10.0.3458 / 3ef14c50cfd03e5b40a2270fc6e8edc5c49dedcd +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy Go Code Quality and Security / 1.14.0.4481 / dcfff811316898a16bf1c6ff191dd3a5d84d3307 +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy Groovy / 1.8 / 6f5ddad1c7cf86e39cd9a8fc0be896660b4d4b61 +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy HTML Code Quality and Security / 3.9.0.3600 / c877f85377cbf43c325a924dff566e2511142dbd +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy IaC Code Quality and Security / 1.20.0.5654 / 45bdf29bcd98938351390d5b5905ee16e4616078 +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy JaCoCo / 1.3.0.1538 / 74a7798c7cea687c72ed9df40c93eb7ea2a58c49 +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy Java Code Quality and Security / 7.24.0.32100 / c39dafc9f60909db5edeb18ecc30ef617d9b5e7d +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy Java 安全性设计准则 / 1.0 / 5325a8a2ba0a1dd43823759afd160b13e8c8da99 +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy JavaScript/TypeScript/CSS Code Quality and Security / 10.5.1.22382 / aee0b6ea75d253c96e97ab00eb1e96e1112ec2a7 +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy Kotlin Code Quality and Security / 2.17.0.2902 / f561c3df92dca4379ae526fc4c912f786328f009 +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy MyBatis Plugin for SonarQube / 1.0.7 / null +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy PHP Code Quality and Security / 3.32.0.10180 / 077f75886ec0b948cdf94b61631a444bcd23a529 +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy Python Code Quality and Security / 4.7.0.12181 / eeaa409efe993ea779a0dacdbbe8e28e4879c975 +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy Ruby Code Quality and Security / 1.14.0.4481 / dcfff811316898a16bf1c6ff191dd3a5d84d3307 +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy SQL language plugin / 1.3.0 / null +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy Scala Code Quality and Security / 1.14.0.4481 / dcfff811316898a16bf1c6ff191dd3a5d84d3307 +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy Sonargraph Integration / 7.0.0 / null +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy Text Code Quality and Security / 2.3.0.1632 / 66d70521dd5e12993a5614c3202f4c33ae0182bd +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy VB.NET Code Quality and Security / 9.8.0.76515 / c1515bad8ebe3e38e102b68fdec8c429669ec560 +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy XML Code Quality and Security / 2.10.0.4108 / 34b16ba369117f6befc0b1e0866a069a80f6db2e +2024.01.14 17:49:18 INFO web[][o.s.s.p.ServerPluginManager] Deploy db* CODECOP for SonarQube (Standalone) / 8.9.7 / null +2024.01.14 17:50:10 INFO web[][o.s.s.p.d.m.c.PostgresCharsetHandler] Verify that database charset supports UTF8 +2024.01.14 17:50:10 INFO web[][o.s.s.e.EsClientProvider] Connected to local Elasticsearch: [http://localhost:9001] +2024.01.14 17:50:10 WARN web[][o.s.a.s.w.WebService$Action] Description is not set on action api/monitoring/metrics +2024.01.14 17:50:10 WARN web[][o.s.a.s.w.WebService$Action] Since is not set on action api/monitoring/metrics +2024.01.14 17:50:10 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/monitoring/metrics +2024.01.14 17:50:10 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/system/liveness +2024.01.14 17:50:10 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.platform.web.WebServiceFilter@5a7b6b75 [pattern=UrlPattern{inclusions=[/api/system/migrate_db.*, ...], exclusions=[/api/components/update_key, ...]}] +2024.01.14 17:50:10 INFO web[][o.s.s.p.DetectPluginChange] Detect plugin changes +2024.01.14 17:50:12 INFO web[][c.t.s.p.PlSqlCopPlugin] define db* CODECOP plugIn (standalone) +2024.01.14 17:50:13 INFO web[][o.s.s.s.LogServerId] Server ID: 4737A3D5-AYzn9DVLFnwpAXZFxDyi +2024.01.14 17:50:13 WARN web[][o.s.s.a.LogOAuthWarning] For security reasons, OAuth authentication should use HTTPS. You should set the property 'Administration > Configuration > Server base URL' to a HTTPS URL. +2024.01.14 17:50:13 INFO web[][o.s.s.p.UpdateCenterClient] Update center: https://update.sonarsource.org/update-center.properties +2024.01.14 17:50:15 INFO web[][o.h.v.i.util.Version] HV000001: Hibernate Validator null +2024.01.14 17:50:15 INFO web[][o.s.s.a.EmbeddedTomcat] HTTP connector enabled on port 9000 +2024.01.14 17:50:21 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action saml/validation_init +2024.01.14 17:50:21 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/issues/list +2024.01.14 17:50:21 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/system/liveness +2024.01.14 17:50:21 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/plugins/download +2024.01.14 17:50:21 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/analysis_cache/get +2024.01.14 17:50:21 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/alm_integrations/check_pat +2024.01.14 17:50:21 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/push/sonarlint_events +2024.01.14 17:50:21 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/dismiss_message/check +2024.01.14 17:50:21 WARN web[][o.s.a.s.w.WebService$Action] Since is not set on action api/cayc/issues_creation_histogram +2024.01.14 17:50:21 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/cayc/issues_creation_histogram +2024.01.14 17:50:21 INFO web[][o.s.s.a.p.ExpiredSessionsCleaner] Purge of expired session tokens has removed 0 elements +2024.01.14 17:50:21 INFO web[][o.s.s.a.p.ExpiredSessionsCleaner] Purge of expired SAML message ids has removed 0 elements +2024.01.14 17:50:21 INFO web[][o.s.s.n.NotificationDaemon] Notification service started (delay 60 sec.) +2024.01.14 17:50:21 INFO web[][o.s.s.t.TelemetryDaemon] Sharing of SonarQube statistics is enabled. +2024.01.14 17:50:24 INFO web[][o.s.s.s.GeneratePluginIndex] Generate scanner plugin index +2024.01.14 17:50:24 INFO web[][c.h.s.i.s.SonargraphMetrics] Sonargraph Integration: Created 55 predefined and 0 custom metric(s) +2024.01.14 17:50:24 INFO web[][o.s.s.s.RegisterMetrics] Register metrics +2024.01.14 17:50:24 INFO web[][o.s.s.r.r.RulesRegistrant] Register rules +2024.01.14 17:50:26 INFO web[][c.h.s.i.s.SonargraphRulesProvider] Sonargraph Integration: Loaded standard rules file '/com/hello2morrow/sonargraph/integration/sonarqube/SonargraphRules.properties' +2024.01.14 17:50:26 INFO web[][c.h.s.i.s.SonargraphRulesProvider] Sonargraph Integration: No custom rules file found at '/home/ubuntu/.sonargraphintegration/SonargraphRules.properties' +2024.01.14 17:50:26 INFO web[][c.h.s.i.s.SonargraphRules] Sonargraph Integration: Created 18 predefined and 0 custom rule(s) +2024.01.14 17:50:26 INFO web[][c.h.s.i.s.SonargraphRulesProvider] Sonargraph Integration: Loaded standard rules file '/com/hello2morrow/sonargraph/integration/sonarqube/SonargraphRules.properties' +2024.01.14 17:50:26 INFO web[][c.h.s.i.s.SonargraphRulesProvider] Sonargraph Integration: No custom rules file found at '/home/ubuntu/.sonargraphintegration/SonargraphRules.properties' +2024.01.14 17:50:26 INFO web[][c.h.s.i.s.SonargraphRules] Sonargraph Integration: Created 18 predefined and 0 custom rule(s) +2024.01.14 17:50:26 INFO web[][o.r.Reflections] Reflections took 18 ms to scan 1 urls, producing 206 keys and 206 values +2024.01.14 17:50:30 INFO web[][c.t.s.p.ClassUtil] instantiate class com.trivadis.sonar.plugin.TrivadisGuidelines3ValidatorConfig +2024.01.14 17:50:30 INFO web[][c.t.s.p.PlSqlCopRules] load db* CODECOP rules from /TrivadisGuidelines3/genmodel/rules.xml +2024.01.14 17:50:30 INFO web[][c.t.s.p.PlSqlCopRules] load db* CODECOP SQALE model from /TrivadisGuidelines3/genmodel/plsqlcop-model.xml +2024.01.14 17:50:38 INFO web[][o.s.s.q.b.BuiltInQProfileRepositoryImpl] Load quality profiles +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule ARCHITECTURE_VIOLATION in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_MODULE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_NAMESPACE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_COMPONENT_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION_ERROR in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule TODO in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DELETE_REFACTORING in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_REFACTORING in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_RENAME_REFACTORING in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule RENAME_REFACTORING in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DUPLICATE_CODE_BLOCK in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule QUALITY_GATE_ISSUE in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] Sonargraph Integration: Profile created +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule ARCHITECTURE_VIOLATION in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_MODULE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_NAMESPACE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_COMPONENT_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION_ERROR in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule TODO in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DELETE_REFACTORING in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_REFACTORING in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_RENAME_REFACTORING in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule RENAME_REFACTORING in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DUPLICATE_CODE_BLOCK in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule QUALITY_GATE_ISSUE in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MODULE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule NAMESPACE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule COMPONENT_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION in repo sonargraphintegration +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] Sonargraph Integration (Strict): Profile created +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule ARCHITECTURE_VIOLATION in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_MODULE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_NAMESPACE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_COMPONENT_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION_ERROR in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule TODO in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DELETE_REFACTORING in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_REFACTORING in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_RENAME_REFACTORING in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule RENAME_REFACTORING in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DUPLICATE_CODE_BLOCK in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule QUALITY_GATE_ISSUE in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] Sonargraph Integration C#: Profile created +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule ARCHITECTURE_VIOLATION in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_MODULE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_NAMESPACE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_COMPONENT_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION_ERROR in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule TODO in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DELETE_REFACTORING in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_REFACTORING in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_RENAME_REFACTORING in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule RENAME_REFACTORING in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DUPLICATE_CODE_BLOCK in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule QUALITY_GATE_ISSUE in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MODULE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule NAMESPACE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule COMPONENT_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION in repo sonargraphintegration_cs +2024.01.14 17:50:38 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] Sonargraph Integration C# (Strict): Profile created +2024.01.14 17:50:39 INFO web[][c.t.s.p.ClassUtil] instantiate class com.trivadis.sonar.plugin.TrivadisGuidelines3ValidatorConfig +2024.01.14 17:50:39 INFO web[][c.t.s.p.ClassUtil] instantiate class com.trivadis.tvdcc.validators.TrivadisGuidelines3 +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-0000 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1010 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1020 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1030 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1040 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1050 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1060 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1070 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2110 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2120 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-2130 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2140 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2150 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2160 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2170 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2180 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2185 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2190 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2210 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2220 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2310 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2320 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2330 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2340 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2410 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2510 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3110 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3120 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3130 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3140 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3210 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4110 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4120 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4130 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4140 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4210 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4220 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4230 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4240 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4310 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4320 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4330 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4340 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4350 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4360 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4370 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4375 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4380 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4385 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4390 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4395 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5020 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5030 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5040 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5050 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5060 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5070 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-6010 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-6020 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7110 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7120 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7130 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7140 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7150 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7210 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7220 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7230 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7160 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7310 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7320 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7410 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7430 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7420 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7440 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7450 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7510 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7710 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-8110 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-8210 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1080 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2135 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2145 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2230 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2610 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3115 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3145 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3150 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-3160 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-3170 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3180 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3182 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3183 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3185 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3190 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3195 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3220 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3310 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3320 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4250 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4260 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4270 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4325 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4365 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-5010 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5080 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7125 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-7170 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7250 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7330 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-7460 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7720 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7730 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-7740 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7810 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7910 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-8120 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-8310 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-8410 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-8510 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-9010 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-9020 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-9030 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-9040 in profile db* CODECOP +2024.01.14 17:50:39 INFO web[][o.s.s.q.RegisterQualityProfiles] Register quality profiles +2024.01.14 17:50:39 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile kubernetes/Sonar way +2024.01.14 17:50:39 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile css/Sonar way +2024.01.14 17:50:39 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile scala/Sonar way +2024.01.14 17:50:39 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile scala/FindBugs Security Scala +2024.01.14 17:50:39 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile jsp/Sonar way +2024.01.14 17:50:39 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile jsp/FindBugs Security JSP +2024.01.14 17:50:39 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile js/Sonar way +2024.01.14 17:50:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile py/Sonar way +2024.01.14 17:50:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile apex/FooLint Rules +2024.01.14 17:50:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile sql/SQL rules +2024.01.14 17:50:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile docker/Sonar way +2024.01.14 17:50:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/Java信息安全设计准则 +2024.01.14 17:50:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/Sonar way +2024.01.14 17:50:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/Sonargraph Integration +2024.01.14 17:50:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/Sonargraph Integration (Strict) +2024.01.14 17:50:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/FindBugs +2024.01.14 17:50:41 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/FindBugs + FB-Contrib +2024.01.14 17:50:41 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/FindBugs Security Audit +2024.01.14 17:50:41 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/FindBugs Security Minimal +2024.01.14 17:50:41 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile web/Sonar way +2024.01.14 17:50:41 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile flex/Sonar way +2024.01.14 17:50:41 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile xml/MyBatisLint Rules +2024.01.14 17:50:41 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile xml/Sonar way +2024.01.14 17:50:41 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile json/Sonar way +2024.01.14 17:50:41 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile text/Sonar way +2024.01.14 17:50:41 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile vbnet/Sonar way +2024.01.14 17:50:41 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile grvy/Sonar way +2024.01.14 17:50:41 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cloudformation/Sonar way +2024.01.14 17:50:41 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile yaml/Sonar way +2024.01.14 17:50:41 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cxx/Sonar way +2024.01.14 17:50:41 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cxx/C++信息安全性设计准则 +2024.01.14 17:50:42 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile kotlin/Sonar way +2024.01.14 17:50:42 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile go/Sonar way +2024.01.14 17:50:42 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile rpg/FooLint Rules +2024.01.14 17:50:42 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile tsql/FooLint Rules +2024.01.14 17:50:42 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile pli/FooLint Rules +2024.01.14 17:50:42 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile secrets/Sonar way +2024.01.14 17:50:42 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile ruby/Sonar way +2024.01.14 17:50:42 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cs/Sonar way +2024.01.14 17:50:42 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cs/Sonargraph Integration C# +2024.01.14 17:50:42 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cs/Sonargraph Integration C# (Strict) +2024.01.14 17:50:42 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cobol/FooLint Rules +2024.01.14 17:50:42 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile php/Sonar way +2024.01.14 17:50:42 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile terraform/Sonar way +2024.01.14 17:50:42 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile azureresourcemanager/Sonar way +2024.01.14 17:50:42 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile abap/FooLint Rules +2024.01.14 17:50:42 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile plsqlcop/db* CODECOP +2024.01.14 17:50:42 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile ts/Sonar way +2024.01.14 17:50:43 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile asp/FooLint Rules +2024.01.14 17:50:43 INFO web[][o.s.s.s.RegisterPermissionTemplates] Register permission templates +2024.01.14 17:50:43 INFO web[][o.s.s.s.RenameDeprecatedPropertyKeys] Rename deprecated property keys +2024.01.14 17:50:43 INFO web[][o.s.s.s.RegisterPlugins] Register plugins +2024.01.14 17:50:43 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.platform.web.SonarLintConnectionFilter@346ed894 [pattern=UrlPattern{inclusions=[/api/*], exclusions=[/api/v2/*]}] +2024.01.14 17:50:43 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.platform.web.WebServiceFilter@2147bec3 [pattern=UrlPattern{inclusions=[/api/issues/delete_comment.*, ...], exclusions=[/api/authentication/login.*, ...]}] +2024.01.14 17:50:43 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.platform.web.WebServiceReroutingFilter@4fa4088a [pattern=UrlPattern{inclusions=[/api/components/update_key, ...], exclusions=[]}] +2024.01.14 17:50:43 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.DefaultAdminCredentialsVerifierFilter@12da42c2 [pattern=UrlPattern{inclusions=[/*], exclusions=[*.css, ...]}] +2024.01.14 17:50:43 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.InitFilter@50b29275 [pattern=UrlPattern{inclusions=[/sessions/init/*], exclusions=[]}] +2024.01.14 17:50:43 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.SamlValidationRedirectionFilter@4c9f9f06 [pattern=UrlPattern{inclusions=[/oauth2/callback/saml], exclusions=[]}] +2024.01.14 17:50:43 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.OAuth2CallbackFilter@23902e47 [pattern=UrlPattern{inclusions=[/oauth2/callback/*], exclusions=[]}] +2024.01.14 17:50:43 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.ResetPasswordFilter@639ca4a5 [pattern=UrlPattern{inclusions=[/*], exclusions=[*.css, ...]}] +2024.01.14 17:50:43 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.ws.LoginAction@76439e14 [pattern=UrlPattern{inclusions=[/api/authentication/login], exclusions=[]}] +2024.01.14 17:50:43 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.ws.LogoutAction@1ec8b766 [pattern=UrlPattern{inclusions=[/api/authentication/logout], exclusions=[]}] +2024.01.14 17:50:43 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.ws.ValidateAction@40416e3 [pattern=UrlPattern{inclusions=[/api/authentication/validate], exclusions=[]}] +2024.01.14 17:50:43 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.saml.ws.ValidationInitAction@dbeba36 [pattern=UrlPattern{inclusions=[/saml/validation_init], exclusions=[]}] +2024.01.14 17:50:43 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.saml.ws.ValidationAction@43b0ba75 [pattern=UrlPattern{inclusions=[/saml/validation], exclusions=[]}] +2024.01.14 17:50:43 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.user.ws.ChangePasswordAction@27f9b399 [pattern=UrlPattern{inclusions=[/api/users/change_password], exclusions=[]}] +2024.01.14 17:50:43 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.plugins.PluginsRiskConsentFilter@172e7fcf [pattern=UrlPattern{inclusions=[/*], exclusions=[*.css, ...]}] +2024.01.14 17:50:43 INFO web[][o.s.s.p.p.PlatformLevelStartup] Running Community Edition +2024.01.14 17:50:43 INFO web[][o.s.s.p.Platform] Web Server is operational +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'ABAP' version : 10.0.0 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'APEX' version : 10.0.0 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'ASP' version : 10.0.0 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'COBOL' version : 10.0.0 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'PLI' version : 10.0.0 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'RPG' version : 10.0.0 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'TSQL' version : 10.0.0 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'cayc' version : 2.1.0.500 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'config' version : 1.3.0.654 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'csharp' version : 9.8.0.76515 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'flex' version : 2.10.0.3458 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'go' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'iac' version : 1.20.0.5654 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'jacoco' version : 1.3.0.1538 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'java' version : 7.24.0.32100 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'javascript' version : 10.5.1.22382 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'keywareJavaPlugin' version : 1.0 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'kotlin' version : 2.17.0.2902 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'php' version : 3.32.0.10180 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'plsqlcop' version : 8.9.7 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'python' version : 4.7.0.12181 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'ruby' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'sonarkeywarepluginscxx' version : 1.0 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'sonarscala' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'sql' version : 1.3.0 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'text' version : 2.3.0.1632 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'vbnet' version : 9.8.0.76515 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'web' version : 3.9.0.3600 has not been found on the update center. +2024.01.14 17:51:26 INFO web[AY0HYgUN2+bQOr2/AAAP][o.s.u.c.UpdateCenter] The plugin 'xml' version : 2.10.0.4108 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'ABAP' version : 10.0.0 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'APEX' version : 10.0.0 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'ASP' version : 10.0.0 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'COBOL' version : 10.0.0 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'PLI' version : 10.0.0 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'RPG' version : 10.0.0 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'TSQL' version : 10.0.0 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'cayc' version : 2.1.0.500 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'config' version : 1.3.0.654 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'csharp' version : 9.8.0.76515 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'flex' version : 2.10.0.3458 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'go' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'iac' version : 1.20.0.5654 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'jacoco' version : 1.3.0.1538 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'java' version : 7.24.0.32100 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'javascript' version : 10.5.1.22382 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'keywareJavaPlugin' version : 1.0 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'kotlin' version : 2.17.0.2902 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'php' version : 3.32.0.10180 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'plsqlcop' version : 8.9.7 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'python' version : 4.7.0.12181 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'ruby' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'sonarkeywarepluginscxx' version : 1.0 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'sonarscala' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'sql' version : 1.3.0 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'text' version : 2.3.0.1632 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'vbnet' version : 9.8.0.76515 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'web' version : 3.9.0.3600 has not been found on the update center. +2024.01.14 18:02:08 INFO web[AY0HYgUN2+bQOr2/AABp][o.s.u.c.UpdateCenter] The plugin 'xml' version : 2.10.0.4108 has not been found on the update center. +2024.01.14 18:18:38 INFO web[][o.s.p.ProcessEntryPoint] Gracefully stopping process +2024.01.14 18:18:38 INFO web[][o.s.s.n.NotificationDaemon] Notification service stopped +2024.01.14 18:18:38 INFO web[][c.z.h.HikariDataSource] HikariPool-1 - Shutdown initiated... +2024.01.14 18:18:38 INFO web[][c.z.h.HikariDataSource] HikariPool-1 - Shutdown completed. +2024.01.14 18:18:38 INFO web[][o.s.s.app.WebServer] Web Server stopped +2024.01.14 18:19:10 INFO web[][o.s.p.ProcessEntryPoint] Starting Web Server +2024.01.14 18:19:12 INFO web[][o.s.s.p.LogServerVersion] SonarQube Server / 10.2.1.78527 / 953bf4f6bc7c449ecd33704e5fb450c19412f037 +2024.01.14 18:19:12 INFO web[][o.s.d.DefaultDatabase] Create JDBC data source for jdbc:postgresql://172.16.36.5:5432/sonar-gx +2024.01.14 18:19:12 INFO web[][c.z.h.HikariDataSource] HikariPool-1 - Starting... +2024.01.14 18:19:13 INFO web[][c.z.h.p.HikariPool] HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@773dab28 +2024.01.14 18:19:13 INFO web[][c.z.h.HikariDataSource] HikariPool-1 - Start completed. +2024.01.14 18:19:14 INFO web[][o.s.s.p.ServerFileSystemImpl] SonarQube home: /mnt/d/.dev_env/sonarqube-10.2.1.78527 +2024.01.14 18:19:14 INFO web[][o.s.s.u.SystemPasscodeImpl] System authentication by passcode is disabled +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy C# Code Quality and Security / 9.8.0.76515 / c1515bad8ebe3e38e102b68fdec8c429669ec560 +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy C++ 信息安全性设计准则 / 1.0 / 1390585ba547ab6e3fe269c9d341cef06e44f08e +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy Checkstyle / 10.12.3 / +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy Chinese Pack / 10.2 / null +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy Clean as You Code / 2.1.0.500 / 4a2d47cf125d03ebacf43536a3897c168deb1b0a +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy Configuration detection for Code Quality and Security / 1.3.0.654 / 63073f0270b2c4754afa58eb8b5ea04e2eebf1a4 +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy Findbugs / 4.2.5 / +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy Flex Code Quality and Security / 2.10.0.3458 / 3ef14c50cfd03e5b40a2270fc6e8edc5c49dedcd +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy Go Code Quality and Security / 1.14.0.4481 / dcfff811316898a16bf1c6ff191dd3a5d84d3307 +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy Groovy / 1.8 / 6f5ddad1c7cf86e39cd9a8fc0be896660b4d4b61 +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy HTML Code Quality and Security / 3.9.0.3600 / c877f85377cbf43c325a924dff566e2511142dbd +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy IaC Code Quality and Security / 1.20.0.5654 / 45bdf29bcd98938351390d5b5905ee16e4616078 +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy JaCoCo / 1.3.0.1538 / 74a7798c7cea687c72ed9df40c93eb7ea2a58c49 +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy Java Code Quality and Security / 7.24.0.32100 / c39dafc9f60909db5edeb18ecc30ef617d9b5e7d +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy Java 安全性设计准则 / 1.0 / 5325a8a2ba0a1dd43823759afd160b13e8c8da99 +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy JavaScript/TypeScript/CSS Code Quality and Security / 10.5.1.22382 / aee0b6ea75d253c96e97ab00eb1e96e1112ec2a7 +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy Kotlin Code Quality and Security / 2.17.0.2902 / f561c3df92dca4379ae526fc4c912f786328f009 +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy MyBatis Plugin for SonarQube / 1.0.7 / null +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy PHP Code Quality and Security / 3.32.0.10180 / 077f75886ec0b948cdf94b61631a444bcd23a529 +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy Python Code Quality and Security / 4.7.0.12181 / eeaa409efe993ea779a0dacdbbe8e28e4879c975 +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy Ruby Code Quality and Security / 1.14.0.4481 / dcfff811316898a16bf1c6ff191dd3a5d84d3307 +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy SQL language plugin / 1.3.0 / null +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy Scala Code Quality and Security / 1.14.0.4481 / dcfff811316898a16bf1c6ff191dd3a5d84d3307 +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy Sonargraph Integration / 7.0.0 / null +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy Text Code Quality and Security / 2.3.0.1632 / 66d70521dd5e12993a5614c3202f4c33ae0182bd +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy VB.NET Code Quality and Security / 9.8.0.76515 / c1515bad8ebe3e38e102b68fdec8c429669ec560 +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy XML Code Quality and Security / 2.10.0.4108 / 34b16ba369117f6befc0b1e0866a069a80f6db2e +2024.01.14 18:19:15 INFO web[][o.s.s.p.ServerPluginManager] Deploy db* CODECOP for SonarQube (Standalone) / 8.9.7 / null +2024.01.14 18:20:06 INFO web[][o.s.s.p.d.m.c.PostgresCharsetHandler] Verify that database charset supports UTF8 +2024.01.14 18:20:07 INFO web[][o.s.s.e.EsClientProvider] Connected to local Elasticsearch: [http://localhost:9001] +2024.01.14 18:20:07 WARN web[][o.s.a.s.w.WebService$Action] Description is not set on action api/monitoring/metrics +2024.01.14 18:20:07 WARN web[][o.s.a.s.w.WebService$Action] Since is not set on action api/monitoring/metrics +2024.01.14 18:20:07 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/monitoring/metrics +2024.01.14 18:20:07 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/system/liveness +2024.01.14 18:20:07 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.platform.web.WebServiceFilter@5a7b6b75 [pattern=UrlPattern{inclusions=[/api/system/migrate_db.*, ...], exclusions=[/api/components/update_key, ...]}] +2024.01.14 18:20:07 INFO web[][o.s.s.p.DetectPluginChange] Detect plugin changes +2024.01.14 18:20:08 INFO web[][c.t.s.p.PlSqlCopPlugin] define db* CODECOP plugIn (standalone) +2024.01.14 18:20:10 INFO web[][o.s.s.s.LogServerId] Server ID: 4737A3D5-AYzn9DVLFnwpAXZFxDyi +2024.01.14 18:20:10 WARN web[][o.s.s.a.LogOAuthWarning] For security reasons, OAuth authentication should use HTTPS. You should set the property 'Administration > Configuration > Server base URL' to a HTTPS URL. +2024.01.14 18:20:10 INFO web[][o.s.s.p.UpdateCenterClient] Update center: https://update.sonarsource.org/update-center.properties +2024.01.14 18:20:12 INFO web[][o.h.v.i.util.Version] HV000001: Hibernate Validator null +2024.01.14 18:20:12 INFO web[][o.s.s.a.EmbeddedTomcat] HTTP connector enabled on port 9000 +2024.01.14 18:20:18 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action saml/validation_init +2024.01.14 18:20:18 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/issues/list +2024.01.14 18:20:18 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/system/liveness +2024.01.14 18:20:18 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/plugins/download +2024.01.14 18:20:18 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/analysis_cache/get +2024.01.14 18:20:18 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/alm_integrations/check_pat +2024.01.14 18:20:18 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/push/sonarlint_events +2024.01.14 18:20:18 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/dismiss_message/check +2024.01.14 18:20:18 WARN web[][o.s.a.s.w.WebService$Action] Since is not set on action api/cayc/issues_creation_histogram +2024.01.14 18:20:18 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/cayc/issues_creation_histogram +2024.01.14 18:20:18 INFO web[][o.s.s.a.p.ExpiredSessionsCleaner] Purge of expired session tokens has removed 0 elements +2024.01.14 18:20:18 INFO web[][o.s.s.a.p.ExpiredSessionsCleaner] Purge of expired SAML message ids has removed 0 elements +2024.01.14 18:20:18 INFO web[][o.s.s.n.NotificationDaemon] Notification service started (delay 60 sec.) +2024.01.14 18:20:19 INFO web[][o.s.s.t.TelemetryDaemon] Sharing of SonarQube statistics is enabled. +2024.01.14 18:20:21 INFO web[][o.s.s.s.GeneratePluginIndex] Generate scanner plugin index +2024.01.14 18:20:22 INFO web[][c.h.s.i.s.SonargraphMetrics] Sonargraph Integration: Created 55 predefined and 0 custom metric(s) +2024.01.14 18:20:22 INFO web[][o.s.s.s.RegisterMetrics] Register metrics +2024.01.14 18:20:22 INFO web[][o.s.s.r.r.RulesRegistrant] Register rules +2024.01.14 18:20:24 INFO web[][c.h.s.i.s.SonargraphRulesProvider] Sonargraph Integration: Loaded standard rules file '/com/hello2morrow/sonargraph/integration/sonarqube/SonargraphRules.properties' +2024.01.14 18:20:24 INFO web[][c.h.s.i.s.SonargraphRulesProvider] Sonargraph Integration: No custom rules file found at '/home/ubuntu/.sonargraphintegration/SonargraphRules.properties' +2024.01.14 18:20:24 INFO web[][c.h.s.i.s.SonargraphRules] Sonargraph Integration: Created 18 predefined and 0 custom rule(s) +2024.01.14 18:20:24 INFO web[][c.h.s.i.s.SonargraphRulesProvider] Sonargraph Integration: Loaded standard rules file '/com/hello2morrow/sonargraph/integration/sonarqube/SonargraphRules.properties' +2024.01.14 18:20:24 INFO web[][c.h.s.i.s.SonargraphRulesProvider] Sonargraph Integration: No custom rules file found at '/home/ubuntu/.sonargraphintegration/SonargraphRules.properties' +2024.01.14 18:20:24 INFO web[][c.h.s.i.s.SonargraphRules] Sonargraph Integration: Created 18 predefined and 0 custom rule(s) +2024.01.14 18:20:24 INFO web[][o.r.Reflections] Reflections took 19 ms to scan 1 urls, producing 206 keys and 206 values +2024.01.14 18:20:28 INFO web[][c.t.s.p.ClassUtil] instantiate class com.trivadis.sonar.plugin.TrivadisGuidelines3ValidatorConfig +2024.01.14 18:20:28 INFO web[][c.t.s.p.PlSqlCopRules] load db* CODECOP rules from /TrivadisGuidelines3/genmodel/rules.xml +2024.01.14 18:20:28 INFO web[][c.t.s.p.PlSqlCopRules] load db* CODECOP SQALE model from /TrivadisGuidelines3/genmodel/plsqlcop-model.xml +2024.01.14 18:20:37 INFO web[][o.s.s.q.b.BuiltInQProfileRepositoryImpl] Load quality profiles +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule ARCHITECTURE_VIOLATION in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_MODULE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_NAMESPACE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_COMPONENT_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION_ERROR in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule TODO in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DELETE_REFACTORING in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_REFACTORING in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_RENAME_REFACTORING in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule RENAME_REFACTORING in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DUPLICATE_CODE_BLOCK in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule QUALITY_GATE_ISSUE in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] Sonargraph Integration: Profile created +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule ARCHITECTURE_VIOLATION in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_MODULE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_NAMESPACE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_COMPONENT_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION_ERROR in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule TODO in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DELETE_REFACTORING in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_REFACTORING in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_RENAME_REFACTORING in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule RENAME_REFACTORING in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DUPLICATE_CODE_BLOCK in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule QUALITY_GATE_ISSUE in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MODULE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule NAMESPACE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule COMPONENT_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION in repo sonargraphintegration +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] Sonargraph Integration (Strict): Profile created +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule ARCHITECTURE_VIOLATION in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_MODULE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_NAMESPACE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_COMPONENT_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION_ERROR in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule TODO in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DELETE_REFACTORING in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_REFACTORING in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_RENAME_REFACTORING in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule RENAME_REFACTORING in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DUPLICATE_CODE_BLOCK in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule QUALITY_GATE_ISSUE in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] Sonargraph Integration C#: Profile created +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule ARCHITECTURE_VIOLATION in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_MODULE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_NAMESPACE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_COMPONENT_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION_ERROR in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule TODO in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DELETE_REFACTORING in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_REFACTORING in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_RENAME_REFACTORING in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule RENAME_REFACTORING in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DUPLICATE_CODE_BLOCK in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule QUALITY_GATE_ISSUE in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MODULE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule NAMESPACE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule COMPONENT_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION in repo sonargraphintegration_cs +2024.01.14 18:20:37 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] Sonargraph Integration C# (Strict): Profile created +2024.01.14 18:20:37 INFO web[][c.t.s.p.ClassUtil] instantiate class com.trivadis.sonar.plugin.TrivadisGuidelines3ValidatorConfig +2024.01.14 18:20:37 INFO web[][c.t.s.p.ClassUtil] instantiate class com.trivadis.tvdcc.validators.TrivadisGuidelines3 +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-0000 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1010 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1020 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1030 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1040 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1050 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1060 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1070 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2110 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2120 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-2130 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2140 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2150 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2160 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2170 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2180 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2185 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2190 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2210 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2220 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2310 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2320 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2330 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2340 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2410 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2510 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3110 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3120 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3130 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3140 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3210 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4110 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4120 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4130 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4140 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4210 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4220 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4230 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4240 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4310 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4320 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4330 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4340 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4350 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4360 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4370 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4375 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4380 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4385 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4390 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4395 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5020 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5030 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5040 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5050 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5060 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5070 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-6010 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-6020 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7110 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7120 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7130 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7140 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7150 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7210 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7220 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7230 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7160 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7310 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7320 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7410 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7430 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7420 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7440 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7450 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7510 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7710 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-8110 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-8210 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1080 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2135 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2145 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2230 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2610 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3115 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3145 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3150 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-3160 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-3170 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3180 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3182 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3183 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3185 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3190 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3195 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3220 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3310 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3320 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4250 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4260 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4270 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4325 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4365 in profile db* CODECOP +2024.01.14 18:20:37 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-5010 in profile db* CODECOP +2024.01.14 18:20:38 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5080 in profile db* CODECOP +2024.01.14 18:20:38 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7125 in profile db* CODECOP +2024.01.14 18:20:38 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-7170 in profile db* CODECOP +2024.01.14 18:20:38 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7250 in profile db* CODECOP +2024.01.14 18:20:38 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7330 in profile db* CODECOP +2024.01.14 18:20:38 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-7460 in profile db* CODECOP +2024.01.14 18:20:38 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7720 in profile db* CODECOP +2024.01.14 18:20:38 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7730 in profile db* CODECOP +2024.01.14 18:20:38 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-7740 in profile db* CODECOP +2024.01.14 18:20:38 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7810 in profile db* CODECOP +2024.01.14 18:20:38 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7910 in profile db* CODECOP +2024.01.14 18:20:38 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-8120 in profile db* CODECOP +2024.01.14 18:20:38 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-8310 in profile db* CODECOP +2024.01.14 18:20:38 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-8410 in profile db* CODECOP +2024.01.14 18:20:38 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-8510 in profile db* CODECOP +2024.01.14 18:20:38 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-9010 in profile db* CODECOP +2024.01.14 18:20:38 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-9020 in profile db* CODECOP +2024.01.14 18:20:38 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-9030 in profile db* CODECOP +2024.01.14 18:20:38 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-9040 in profile db* CODECOP +2024.01.14 18:20:38 INFO web[][o.s.s.q.RegisterQualityProfiles] Register quality profiles +2024.01.14 18:20:38 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile kubernetes/Sonar way +2024.01.14 18:20:38 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile css/Sonar way +2024.01.14 18:20:38 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile scala/Sonar way +2024.01.14 18:20:38 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile scala/FindBugs Security Scala +2024.01.14 18:20:38 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile jsp/Sonar way +2024.01.14 18:20:38 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile jsp/FindBugs Security JSP +2024.01.14 18:20:38 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile js/Sonar way +2024.01.14 18:20:38 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile py/Sonar way +2024.01.14 18:20:38 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile apex/FooLint Rules +2024.01.14 18:20:38 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile sql/SQL rules +2024.01.14 18:20:38 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile docker/Sonar way +2024.01.14 18:20:38 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/Java信息安全设计准则 +2024.01.14 18:20:38 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/Sonar way +2024.01.14 18:20:39 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/Sonargraph Integration +2024.01.14 18:20:39 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/Sonargraph Integration (Strict) +2024.01.14 18:20:39 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/FindBugs +2024.01.14 18:20:39 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/FindBugs + FB-Contrib +2024.01.14 18:20:39 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/FindBugs Security Audit +2024.01.14 18:20:39 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/FindBugs Security Minimal +2024.01.14 18:20:39 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile web/Sonar way +2024.01.14 18:20:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile flex/Sonar way +2024.01.14 18:20:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile xml/MyBatisLint Rules +2024.01.14 18:20:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile xml/Sonar way +2024.01.14 18:20:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile json/Sonar way +2024.01.14 18:20:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile text/Sonar way +2024.01.14 18:20:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile vbnet/Sonar way +2024.01.14 18:20:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile grvy/Sonar way +2024.01.14 18:20:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cloudformation/Sonar way +2024.01.14 18:20:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile yaml/Sonar way +2024.01.14 18:20:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cxx/Sonar way +2024.01.14 18:20:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cxx/C++信息安全性设计准则 +2024.01.14 18:20:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile kotlin/Sonar way +2024.01.14 18:20:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile go/Sonar way +2024.01.14 18:20:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile rpg/FooLint Rules +2024.01.14 18:20:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile tsql/FooLint Rules +2024.01.14 18:20:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile pli/FooLint Rules +2024.01.14 18:20:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile secrets/Sonar way +2024.01.14 18:20:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile ruby/Sonar way +2024.01.14 18:20:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cs/Sonar way +2024.01.14 18:20:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cs/Sonargraph Integration C# +2024.01.14 18:20:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cs/Sonargraph Integration C# (Strict) +2024.01.14 18:20:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cobol/FooLint Rules +2024.01.14 18:20:40 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile php/Sonar way +2024.01.14 18:20:41 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile terraform/Sonar way +2024.01.14 18:20:41 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile azureresourcemanager/Sonar way +2024.01.14 18:20:41 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile abap/FooLint Rules +2024.01.14 18:20:41 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile plsqlcop/db* CODECOP +2024.01.14 18:20:41 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile ts/Sonar way +2024.01.14 18:20:41 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile asp/FooLint Rules +2024.01.14 18:20:41 INFO web[][o.s.s.s.RegisterPermissionTemplates] Register permission templates +2024.01.14 18:20:41 INFO web[][o.s.s.s.RenameDeprecatedPropertyKeys] Rename deprecated property keys +2024.01.14 18:20:41 INFO web[][o.s.s.s.RegisterPlugins] Register plugins +2024.01.14 18:20:41 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.platform.web.SonarLintConnectionFilter@23c73d84 [pattern=UrlPattern{inclusions=[/api/*], exclusions=[/api/v2/*]}] +2024.01.14 18:20:41 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.platform.web.WebServiceFilter@466b566 [pattern=UrlPattern{inclusions=[/api/issues/delete_comment.*, ...], exclusions=[/api/authentication/login.*, ...]}] +2024.01.14 18:20:41 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.platform.web.WebServiceReroutingFilter@4d5c82b [pattern=UrlPattern{inclusions=[/api/components/update_key, ...], exclusions=[]}] +2024.01.14 18:20:41 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.DefaultAdminCredentialsVerifierFilter@7d5b7eee [pattern=UrlPattern{inclusions=[/*], exclusions=[*.css, ...]}] +2024.01.14 18:20:41 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.InitFilter@67ea47dc [pattern=UrlPattern{inclusions=[/sessions/init/*], exclusions=[]}] +2024.01.14 18:20:41 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.SamlValidationRedirectionFilter@561613c2 [pattern=UrlPattern{inclusions=[/oauth2/callback/saml], exclusions=[]}] +2024.01.14 18:20:41 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.OAuth2CallbackFilter@7ca80dbb [pattern=UrlPattern{inclusions=[/oauth2/callback/*], exclusions=[]}] +2024.01.14 18:20:41 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.ResetPasswordFilter@5aa2b0ce [pattern=UrlPattern{inclusions=[/*], exclusions=[*.css, ...]}] +2024.01.14 18:20:41 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.ws.LoginAction@2c79ca28 [pattern=UrlPattern{inclusions=[/api/authentication/login], exclusions=[]}] +2024.01.14 18:20:41 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.ws.LogoutAction@67b72f1d [pattern=UrlPattern{inclusions=[/api/authentication/logout], exclusions=[]}] +2024.01.14 18:20:41 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.ws.ValidateAction@2ce78656 [pattern=UrlPattern{inclusions=[/api/authentication/validate], exclusions=[]}] +2024.01.14 18:20:41 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.saml.ws.ValidationInitAction@52a7cf6 [pattern=UrlPattern{inclusions=[/saml/validation_init], exclusions=[]}] +2024.01.14 18:20:41 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.saml.ws.ValidationAction@2f4ead27 [pattern=UrlPattern{inclusions=[/saml/validation], exclusions=[]}] +2024.01.14 18:20:41 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.user.ws.ChangePasswordAction@6fc3c8e1 [pattern=UrlPattern{inclusions=[/api/users/change_password], exclusions=[]}] +2024.01.14 18:20:41 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.plugins.PluginsRiskConsentFilter@92d5ed8 [pattern=UrlPattern{inclusions=[/*], exclusions=[*.css, ...]}] +2024.01.14 18:20:41 INFO web[][o.s.s.p.p.PlatformLevelStartup] Running Community Edition +2024.01.14 18:20:42 INFO web[][o.s.s.p.Platform] Web Server is operational +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'ABAP' version : 10.0.0 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'APEX' version : 10.0.0 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'ASP' version : 10.0.0 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'COBOL' version : 10.0.0 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'PLI' version : 10.0.0 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'RPG' version : 10.0.0 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'TSQL' version : 10.0.0 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'cayc' version : 2.1.0.500 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'config' version : 1.3.0.654 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'csharp' version : 9.8.0.76515 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'flex' version : 2.10.0.3458 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'go' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'iac' version : 1.20.0.5654 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'jacoco' version : 1.3.0.1538 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'java' version : 7.24.0.32100 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'javascript' version : 10.5.1.22382 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'keywareJavaPlugin' version : 1.0 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'kotlin' version : 2.17.0.2902 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'php' version : 3.32.0.10180 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'plsqlcop' version : 8.9.7 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'python' version : 4.7.0.12181 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'ruby' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'sonarkeywarepluginscxx' version : 1.0 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'sonarscala' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'sql' version : 1.3.0 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'text' version : 2.3.0.1632 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'vbnet' version : 9.8.0.76515 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'web' version : 3.9.0.3600 has not been found on the update center. +2024.01.14 18:20:56 INFO web[AY0HfO4TmoAQu1E8AAAQ][o.s.u.c.UpdateCenter] The plugin 'xml' version : 2.10.0.4108 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'ABAP' version : 10.0.0 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'APEX' version : 10.0.0 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'ASP' version : 10.0.0 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'COBOL' version : 10.0.0 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'PLI' version : 10.0.0 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'RPG' version : 10.0.0 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'TSQL' version : 10.0.0 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'cayc' version : 2.1.0.500 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'config' version : 1.3.0.654 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'csharp' version : 9.8.0.76515 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'flex' version : 2.10.0.3458 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'go' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'iac' version : 1.20.0.5654 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'jacoco' version : 1.3.0.1538 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'java' version : 7.24.0.32100 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'javascript' version : 10.5.1.22382 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'keywareJavaPlugin' version : 1.0 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'kotlin' version : 2.17.0.2902 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'php' version : 3.32.0.10180 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'plsqlcop' version : 8.9.7 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'python' version : 4.7.0.12181 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'ruby' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'sonarkeywarepluginscxx' version : 1.0 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'sonarscala' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'sql' version : 1.3.0 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'text' version : 2.3.0.1632 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'vbnet' version : 9.8.0.76515 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'web' version : 3.9.0.3600 has not been found on the update center. +2024.01.14 18:21:51 INFO web[AY0HfO4TmoAQu1E8AABX][o.s.u.c.UpdateCenter] The plugin 'xml' version : 2.10.0.4108 has not been found on the update center. +2024.01.14 18:48:02 INFO web[][o.s.p.ProcessEntryPoint] Gracefully stopping process +2024.01.14 18:48:02 INFO web[][o.s.s.n.NotificationDaemon] Notification service stopped +2024.01.14 18:48:02 INFO web[][c.z.h.HikariDataSource] HikariPool-1 - Shutdown initiated... +2024.01.14 18:48:02 INFO web[][c.z.h.HikariDataSource] HikariPool-1 - Shutdown completed. +2024.01.14 18:48:02 INFO web[][o.s.s.app.WebServer] Web Server stopped +2024.01.14 18:48:37 INFO web[][o.s.p.ProcessEntryPoint] Starting Web Server +2024.01.14 18:48:40 INFO web[][o.s.s.p.LogServerVersion] SonarQube Server / 10.2.1.78527 / 953bf4f6bc7c449ecd33704e5fb450c19412f037 +2024.01.14 18:48:40 INFO web[][o.s.d.DefaultDatabase] Create JDBC data source for jdbc:postgresql://172.16.36.5:5432/sonar-gx +2024.01.14 18:48:40 INFO web[][c.z.h.HikariDataSource] HikariPool-1 - Starting... +2024.01.14 18:48:40 INFO web[][c.z.h.p.HikariPool] HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@773dab28 +2024.01.14 18:48:40 INFO web[][c.z.h.HikariDataSource] HikariPool-1 - Start completed. +2024.01.14 18:48:41 INFO web[][o.s.s.p.ServerFileSystemImpl] SonarQube home: /mnt/d/.dev_env/sonarqube-10.2.1.78527 +2024.01.14 18:48:41 INFO web[][o.s.s.u.SystemPasscodeImpl] System authentication by passcode is disabled +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy C# Code Quality and Security / 9.8.0.76515 / c1515bad8ebe3e38e102b68fdec8c429669ec560 +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy C++ 信息安全性设计准则 / 1.0 / 1390585ba547ab6e3fe269c9d341cef06e44f08e +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy Checkstyle / 10.12.3 / +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy Chinese Pack / 10.2 / null +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy Clean as You Code / 2.1.0.500 / 4a2d47cf125d03ebacf43536a3897c168deb1b0a +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy Configuration detection for Code Quality and Security / 1.3.0.654 / 63073f0270b2c4754afa58eb8b5ea04e2eebf1a4 +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy Example Plugin for SonarQube 10.x / 10.0.0 / null +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy Findbugs / 4.2.5 / +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy Flex Code Quality and Security / 2.10.0.3458 / 3ef14c50cfd03e5b40a2270fc6e8edc5c49dedcd +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy Go Code Quality and Security / 1.14.0.4481 / dcfff811316898a16bf1c6ff191dd3a5d84d3307 +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy Groovy / 1.8 / 6f5ddad1c7cf86e39cd9a8fc0be896660b4d4b61 +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy HTML Code Quality and Security / 3.9.0.3600 / c877f85377cbf43c325a924dff566e2511142dbd +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy IaC Code Quality and Security / 1.20.0.5654 / 45bdf29bcd98938351390d5b5905ee16e4616078 +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy JaCoCo / 1.3.0.1538 / 74a7798c7cea687c72ed9df40c93eb7ea2a58c49 +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy Java Code Quality and Security / 7.24.0.32100 / c39dafc9f60909db5edeb18ecc30ef617d9b5e7d +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy Java 安全性设计准则 / 1.0 / 5325a8a2ba0a1dd43823759afd160b13e8c8da99 +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy JavaScript/TypeScript/CSS Code Quality and Security / 10.5.1.22382 / aee0b6ea75d253c96e97ab00eb1e96e1112ec2a7 +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy Kotlin Code Quality and Security / 2.17.0.2902 / f561c3df92dca4379ae526fc4c912f786328f009 +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy MyBatis Plugin for SonarQube / 1.0.7 / null +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy PHP Code Quality and Security / 3.32.0.10180 / 077f75886ec0b948cdf94b61631a444bcd23a529 +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy Python Code Quality and Security / 4.7.0.12181 / eeaa409efe993ea779a0dacdbbe8e28e4879c975 +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy Ruby Code Quality and Security / 1.14.0.4481 / dcfff811316898a16bf1c6ff191dd3a5d84d3307 +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy SQL language plugin / 1.3.0 / null +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy Scala Code Quality and Security / 1.14.0.4481 / dcfff811316898a16bf1c6ff191dd3a5d84d3307 +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy Sonargraph Integration / 7.0.0 / null +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy Text Code Quality and Security / 2.3.0.1632 / 66d70521dd5e12993a5614c3202f4c33ae0182bd +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy VB.NET Code Quality and Security / 9.8.0.76515 / c1515bad8ebe3e38e102b68fdec8c429669ec560 +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy XML Code Quality and Security / 2.10.0.4108 / 34b16ba369117f6befc0b1e0866a069a80f6db2e +2024.01.14 18:48:42 INFO web[][o.s.s.p.ServerPluginManager] Deploy db* CODECOP for SonarQube (Standalone) / 8.9.7 / null +2024.01.14 18:49:31 INFO web[][o.s.s.p.d.m.c.PostgresCharsetHandler] Verify that database charset supports UTF8 +2024.01.14 18:49:31 INFO web[][o.s.s.e.EsClientProvider] Connected to local Elasticsearch: [http://localhost:9001] +2024.01.14 18:49:32 WARN web[][o.s.a.s.w.WebService$Action] Description is not set on action api/monitoring/metrics +2024.01.14 18:49:32 WARN web[][o.s.a.s.w.WebService$Action] Since is not set on action api/monitoring/metrics +2024.01.14 18:49:32 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/monitoring/metrics +2024.01.14 18:49:32 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/system/liveness +2024.01.14 18:49:32 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.platform.web.WebServiceFilter@5a7b6b75 [pattern=UrlPattern{inclusions=[/api/system/migrate_db.*, ...], exclusions=[/api/components/update_key, ...]}] +2024.01.14 18:49:32 INFO web[][o.s.s.p.DetectPluginChange] Detect plugin changes +2024.01.14 18:49:33 INFO web[][c.t.s.p.PlSqlCopPlugin] define db* CODECOP plugIn (standalone) +2024.01.14 18:49:34 INFO web[][o.s.s.s.LogServerId] Server ID: 4737A3D5-AYzn9DVLFnwpAXZFxDyi +2024.01.14 18:49:34 WARN web[][o.s.s.a.LogOAuthWarning] For security reasons, OAuth authentication should use HTTPS. You should set the property 'Administration > Configuration > Server base URL' to a HTTPS URL. +2024.01.14 18:49:34 INFO web[][o.s.s.p.UpdateCenterClient] Update center: https://update.sonarsource.org/update-center.properties +2024.01.14 18:49:36 INFO web[][o.h.v.i.util.Version] HV000001: Hibernate Validator null +2024.01.14 18:49:37 INFO web[][o.s.s.a.EmbeddedTomcat] HTTP connector enabled on port 9000 +2024.01.14 18:49:42 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action saml/validation_init +2024.01.14 18:49:43 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/issues/list +2024.01.14 18:49:43 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/system/liveness +2024.01.14 18:49:43 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/plugins/download +2024.01.14 18:49:43 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/analysis_cache/get +2024.01.14 18:49:43 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/alm_integrations/check_pat +2024.01.14 18:49:43 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/push/sonarlint_events +2024.01.14 18:49:43 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/dismiss_message/check +2024.01.14 18:49:43 WARN web[][o.s.a.s.w.WebService$Action] Since is not set on action api/cayc/issues_creation_histogram +2024.01.14 18:49:43 WARN web[][o.s.a.s.w.WebService$Action] The response example is not set on action api/cayc/issues_creation_histogram +2024.01.14 18:49:43 INFO web[][o.s.s.a.p.ExpiredSessionsCleaner] Purge of expired session tokens has removed 0 elements +2024.01.14 18:49:43 INFO web[][o.s.s.a.p.ExpiredSessionsCleaner] Purge of expired SAML message ids has removed 0 elements +2024.01.14 18:49:43 INFO web[][o.s.s.n.NotificationDaemon] Notification service started (delay 60 sec.) +2024.01.14 18:49:43 INFO web[][o.s.s.t.TelemetryDaemon] Sharing of SonarQube statistics is enabled. +2024.01.14 18:49:45 INFO web[][o.s.s.s.GeneratePluginIndex] Generate scanner plugin index +2024.01.14 18:49:45 INFO web[][c.h.s.i.s.SonargraphMetrics] Sonargraph Integration: Created 55 predefined and 0 custom metric(s) +2024.01.14 18:49:45 INFO web[][o.s.s.s.RegisterMetrics] Register metrics +2024.01.14 18:49:46 INFO web[][o.s.s.r.r.RulesRegistrant] Register rules +2024.01.14 18:49:47 INFO web[][c.h.s.i.s.SonargraphRulesProvider] Sonargraph Integration: Loaded standard rules file '/com/hello2morrow/sonargraph/integration/sonarqube/SonargraphRules.properties' +2024.01.14 18:49:47 INFO web[][c.h.s.i.s.SonargraphRulesProvider] Sonargraph Integration: No custom rules file found at '/home/ubuntu/.sonargraphintegration/SonargraphRules.properties' +2024.01.14 18:49:47 INFO web[][c.h.s.i.s.SonargraphRules] Sonargraph Integration: Created 18 predefined and 0 custom rule(s) +2024.01.14 18:49:47 INFO web[][c.h.s.i.s.SonargraphRulesProvider] Sonargraph Integration: Loaded standard rules file '/com/hello2morrow/sonargraph/integration/sonarqube/SonargraphRules.properties' +2024.01.14 18:49:47 INFO web[][c.h.s.i.s.SonargraphRulesProvider] Sonargraph Integration: No custom rules file found at '/home/ubuntu/.sonargraphintegration/SonargraphRules.properties' +2024.01.14 18:49:47 INFO web[][c.h.s.i.s.SonargraphRules] Sonargraph Integration: Created 18 predefined and 0 custom rule(s) +2024.01.14 18:49:48 INFO web[][o.r.Reflections] Reflections took 19 ms to scan 1 urls, producing 206 keys and 206 values +2024.01.14 18:49:51 INFO web[][c.t.s.p.ClassUtil] instantiate class com.trivadis.sonar.plugin.TrivadisGuidelines3ValidatorConfig +2024.01.14 18:49:51 INFO web[][c.t.s.p.PlSqlCopRules] load db* CODECOP rules from /TrivadisGuidelines3/genmodel/rules.xml +2024.01.14 18:49:51 INFO web[][c.t.s.p.PlSqlCopRules] load db* CODECOP SQALE model from /TrivadisGuidelines3/genmodel/plsqlcop-model.xml +2024.01.14 18:50:01 INFO web[][o.s.s.q.b.BuiltInQProfileRepositoryImpl] Load quality profiles +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule ARCHITECTURE_VIOLATION in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_MODULE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_NAMESPACE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_COMPONENT_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION_ERROR in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule TODO in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DELETE_REFACTORING in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_REFACTORING in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_RENAME_REFACTORING in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule RENAME_REFACTORING in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DUPLICATE_CODE_BLOCK in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule QUALITY_GATE_ISSUE in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] Sonargraph Integration: Profile created +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule ARCHITECTURE_VIOLATION in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_MODULE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_NAMESPACE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_COMPONENT_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION_ERROR in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule TODO in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DELETE_REFACTORING in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_REFACTORING in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_RENAME_REFACTORING in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule RENAME_REFACTORING in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DUPLICATE_CODE_BLOCK in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule QUALITY_GATE_ISSUE in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MODULE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule NAMESPACE_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule COMPONENT_CYCLE_GROUP in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION in repo sonargraphintegration +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] Sonargraph Integration (Strict): Profile created +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule ARCHITECTURE_VIOLATION in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_MODULE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_NAMESPACE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_COMPONENT_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION_ERROR in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule TODO in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DELETE_REFACTORING in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_REFACTORING in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_RENAME_REFACTORING in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule RENAME_REFACTORING in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DUPLICATE_CODE_BLOCK in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule QUALITY_GATE_ISSUE in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] Sonargraph Integration C#: Profile created +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule ARCHITECTURE_VIOLATION in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_MODULE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_NAMESPACE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule CRITICAL_COMPONENT_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION_ERROR in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule TODO in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DELETE_REFACTORING in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_REFACTORING in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MOVE_RENAME_REFACTORING in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule RENAME_REFACTORING in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule DUPLICATE_CODE_BLOCK in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule QUALITY_GATE_ISSUE in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule MODULE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule NAMESPACE_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule COMPONENT_CYCLE_GROUP in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] activating rule THRESHOLD_VIOLATION in repo sonargraphintegration_cs +2024.01.14 18:50:01 INFO web[][c.h.s.i.s.AbstractSonargraphProfile] Sonargraph Integration C# (Strict): Profile created +2024.01.14 18:50:01 INFO web[][c.t.s.p.ClassUtil] instantiate class com.trivadis.sonar.plugin.TrivadisGuidelines3ValidatorConfig +2024.01.14 18:50:01 INFO web[][c.t.s.p.ClassUtil] instantiate class com.trivadis.tvdcc.validators.TrivadisGuidelines3 +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-0000 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1010 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1020 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1030 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1040 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1050 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1060 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1070 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2110 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2120 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-2130 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2140 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2150 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2160 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2170 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2180 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2185 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2190 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2210 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2220 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2310 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2320 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2330 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2340 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2410 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2510 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3110 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3120 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3130 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3140 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3210 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4110 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4120 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4130 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4140 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4210 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4220 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4230 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4240 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4310 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4320 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4330 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4340 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4350 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4360 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4370 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4375 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4380 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4385 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4390 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4395 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5020 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5030 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5040 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5050 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5060 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5070 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-6010 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-6020 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7110 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7120 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7130 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7140 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7150 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7210 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7220 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7230 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7160 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7310 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7320 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7410 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7430 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7420 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7440 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7450 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7510 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7710 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-8110 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-8210 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-1080 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2135 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2145 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2230 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-2610 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3115 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3145 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3150 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-3160 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-3170 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3180 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3182 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3183 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3185 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3190 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3195 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3220 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3310 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-3320 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4250 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4260 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4270 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4325 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-4365 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-5010 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-5080 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7125 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-7170 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7250 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7330 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-7460 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7720 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7730 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-7740 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7810 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-7910 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-8120 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-8310 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-8410 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] do not active rule G-8510 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-9010 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-9020 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-9030 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][c.t.s.p.PlSqlCopProfile] activate rule G-9040 in profile db* CODECOP +2024.01.14 18:50:02 INFO web[][o.s.s.q.RegisterQualityProfiles] Register quality profiles +2024.01.14 18:50:02 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile kubernetes/Sonar way +2024.01.14 18:50:02 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile css/Sonar way +2024.01.14 18:50:02 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile scala/Sonar way +2024.01.14 18:50:02 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile scala/FindBugs Security Scala +2024.01.14 18:50:02 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile jsp/Sonar way +2024.01.14 18:50:02 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile jsp/FindBugs Security JSP +2024.01.14 18:50:02 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile js/Sonar way +2024.01.14 18:50:02 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile py/Sonar way +2024.01.14 18:50:02 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile apex/FooLint Rules +2024.01.14 18:50:02 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile sql/SQL rules +2024.01.14 18:50:02 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile docker/Sonar way +2024.01.14 18:50:02 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/Java信息安全设计准则 +2024.01.14 18:50:02 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/Sonar way +2024.01.14 18:50:03 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/Sonargraph Integration +2024.01.14 18:50:03 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/Sonargraph Integration (Strict) +2024.01.14 18:50:03 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/FindBugs +2024.01.14 18:50:03 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/FindBugs + FB-Contrib +2024.01.14 18:50:03 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/FindBugs Security Audit +2024.01.14 18:50:04 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile java/FindBugs Security Minimal +2024.01.14 18:50:04 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile web/Sonar way +2024.01.14 18:50:04 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile flex/Sonar way +2024.01.14 18:50:04 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile xml/MyBatisLint Rules +2024.01.14 18:50:04 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile xml/Sonar way +2024.01.14 18:50:04 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile json/Sonar way +2024.01.14 18:50:04 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile text/Sonar way +2024.01.14 18:50:04 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile vbnet/Sonar way +2024.01.14 18:50:04 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile grvy/Sonar way +2024.01.14 18:50:04 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cloudformation/Sonar way +2024.01.14 18:50:04 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile yaml/Sonar way +2024.01.14 18:50:04 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cxx/Sonar way +2024.01.14 18:50:04 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cxx/C++信息安全性设计准则 +2024.01.14 18:50:05 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile kotlin/Sonar way +2024.01.14 18:50:05 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile go/Sonar way +2024.01.14 18:50:05 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile rpg/FooLint Rules +2024.01.14 18:50:05 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile tsql/FooLint Rules +2024.01.14 18:50:05 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile pli/FooLint Rules +2024.01.14 18:50:05 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile secrets/Sonar way +2024.01.14 18:50:05 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile ruby/Sonar way +2024.01.14 18:50:05 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cs/Sonar way +2024.01.14 18:50:05 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cs/Sonargraph Integration C# +2024.01.14 18:50:05 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cs/Sonargraph Integration C# (Strict) +2024.01.14 18:50:05 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile cobol/FooLint Rules +2024.01.14 18:50:05 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile php/Sonar way +2024.01.14 18:50:05 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile terraform/Sonar way +2024.01.14 18:50:05 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile azureresourcemanager/Sonar way +2024.01.14 18:50:05 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile abap/FooLint Rules +2024.01.14 18:50:05 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile plsqlcop/db* CODECOP +2024.01.14 18:50:05 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile ts/Sonar way +2024.01.14 18:50:06 INFO web[][o.s.s.q.RegisterQualityProfiles] Update profile asp/FooLint Rules +2024.01.14 18:50:06 INFO web[][o.s.s.q.RegisterQualityProfiles] Default built-in quality profile for language [cxx] has been updated from [Sonar way] to [C++信息安全性设计准则] since previous default does not have active rules. +2024.01.14 18:50:06 INFO web[][o.s.s.s.RegisterPermissionTemplates] Register permission templates +2024.01.14 18:50:06 INFO web[][o.s.s.s.RenameDeprecatedPropertyKeys] Rename deprecated property keys +2024.01.14 18:50:06 INFO web[][o.s.s.s.RegisterPlugins] Register plugins +2024.01.14 18:50:06 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.platform.web.SonarLintConnectionFilter@4bafb264 [pattern=UrlPattern{inclusions=[/api/*], exclusions=[/api/v2/*]}] +2024.01.14 18:50:06 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.platform.web.WebServiceFilter@35d10d90 [pattern=UrlPattern{inclusions=[/api/issues/delete_comment.*, ...], exclusions=[/api/authentication/login.*, ...]}] +2024.01.14 18:50:06 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.platform.web.WebServiceReroutingFilter@75b7797d [pattern=UrlPattern{inclusions=[/api/components/update_key, ...], exclusions=[]}] +2024.01.14 18:50:06 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.DefaultAdminCredentialsVerifierFilter@724f36f3 [pattern=UrlPattern{inclusions=[/*], exclusions=[*.css, ...]}] +2024.01.14 18:50:06 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.InitFilter@4445964c [pattern=UrlPattern{inclusions=[/sessions/init/*], exclusions=[]}] +2024.01.14 18:50:06 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.SamlValidationRedirectionFilter@79c5aed9 [pattern=UrlPattern{inclusions=[/oauth2/callback/saml], exclusions=[]}] +2024.01.14 18:50:06 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.OAuth2CallbackFilter@37774c0d [pattern=UrlPattern{inclusions=[/oauth2/callback/*], exclusions=[]}] +2024.01.14 18:50:06 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.ResetPasswordFilter@3c840cbe [pattern=UrlPattern{inclusions=[/*], exclusions=[*.css, ...]}] +2024.01.14 18:50:06 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.ws.LoginAction@a0bba4 [pattern=UrlPattern{inclusions=[/api/authentication/login], exclusions=[]}] +2024.01.14 18:50:06 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.ws.LogoutAction@8fdd790 [pattern=UrlPattern{inclusions=[/api/authentication/logout], exclusions=[]}] +2024.01.14 18:50:06 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.authentication.ws.ValidateAction@7c113d0f [pattern=UrlPattern{inclusions=[/api/authentication/validate], exclusions=[]}] +2024.01.14 18:50:06 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.saml.ws.ValidationInitAction@4a8a649 [pattern=UrlPattern{inclusions=[/saml/validation_init], exclusions=[]}] +2024.01.14 18:50:06 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.saml.ws.ValidationAction@300f01d3 [pattern=UrlPattern{inclusions=[/saml/validation], exclusions=[]}] +2024.01.14 18:50:06 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.user.ws.ChangePasswordAction@541b1a94 [pattern=UrlPattern{inclusions=[/api/users/change_password], exclusions=[]}] +2024.01.14 18:50:06 INFO web[][o.s.s.p.w.MasterServletFilter] Initializing servlet filter org.sonar.server.plugins.PluginsRiskConsentFilter@fcd5a8 [pattern=UrlPattern{inclusions=[/*], exclusions=[*.css, ...]}] +2024.01.14 18:50:06 INFO web[][o.s.s.p.p.PlatformLevelStartup] Running Community Edition +2024.01.14 18:50:06 INFO web[][o.s.s.p.Platform] Web Server is operational +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'ABAP' version : 10.0.0 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'APEX' version : 10.0.0 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'ASP' version : 10.0.0 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'COBOL' version : 10.0.0 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'PLI' version : 10.0.0 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'RPG' version : 10.0.0 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'TSQL' version : 10.0.0 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'cayc' version : 2.1.0.500 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'config' version : 1.3.0.654 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'csharp' version : 9.8.0.76515 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'flex' version : 2.10.0.3458 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'go' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'iac' version : 1.20.0.5654 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'jacoco' version : 1.3.0.1538 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'java' version : 7.24.0.32100 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'javascript' version : 10.5.1.22382 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'keywareJavaPlugin' version : 1.0 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'kotlin' version : 2.17.0.2902 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'php' version : 3.32.0.10180 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'plsqlcop' version : 8.9.7 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'python' version : 4.7.0.12181 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'ruby' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'sonarkeywarepluginscxx' version : 1.0 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'sonarscala' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'sql' version : 1.3.0 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'text' version : 2.3.0.1632 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'vbnet' version : 9.8.0.76515 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'web' version : 3.9.0.3600 has not been found on the update center. +2024.01.14 18:50:17 INFO web[AY0Hl+AzxUY1jOtIAAAN][o.s.u.c.UpdateCenter] The plugin 'xml' version : 2.10.0.4108 has not been found on the update center. +2024.01.14 18:50:49 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'ABAP' version : 10.0.0 has not been found on the update center. +2024.01.14 18:50:49 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'APEX' version : 10.0.0 has not been found on the update center. +2024.01.14 18:50:49 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'ASP' version : 10.0.0 has not been found on the update center. +2024.01.14 18:50:49 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'COBOL' version : 10.0.0 has not been found on the update center. +2024.01.14 18:50:49 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'PLI' version : 10.0.0 has not been found on the update center. +2024.01.14 18:50:49 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'RPG' version : 10.0.0 has not been found on the update center. +2024.01.14 18:50:49 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'TSQL' version : 10.0.0 has not been found on the update center. +2024.01.14 18:50:49 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'cayc' version : 2.1.0.500 has not been found on the update center. +2024.01.14 18:50:49 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'config' version : 1.3.0.654 has not been found on the update center. +2024.01.14 18:50:49 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'csharp' version : 9.8.0.76515 has not been found on the update center. +2024.01.14 18:50:49 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'flex' version : 2.10.0.3458 has not been found on the update center. +2024.01.14 18:50:49 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'go' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 18:50:49 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'iac' version : 1.20.0.5654 has not been found on the update center. +2024.01.14 18:50:49 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'jacoco' version : 1.3.0.1538 has not been found on the update center. +2024.01.14 18:50:49 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'java' version : 7.24.0.32100 has not been found on the update center. +2024.01.14 18:50:50 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'javascript' version : 10.5.1.22382 has not been found on the update center. +2024.01.14 18:50:50 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'keywareJavaPlugin' version : 1.0 has not been found on the update center. +2024.01.14 18:50:50 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'kotlin' version : 2.17.0.2902 has not been found on the update center. +2024.01.14 18:50:50 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'php' version : 3.32.0.10180 has not been found on the update center. +2024.01.14 18:50:50 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'plsqlcop' version : 8.9.7 has not been found on the update center. +2024.01.14 18:50:50 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'python' version : 4.7.0.12181 has not been found on the update center. +2024.01.14 18:50:50 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'ruby' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 18:50:50 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'sonarkeywarepluginscxx' version : 1.0 has not been found on the update center. +2024.01.14 18:50:50 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'sonarscala' version : 1.14.0.4481 has not been found on the update center. +2024.01.14 18:50:50 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'sql' version : 1.3.0 has not been found on the update center. +2024.01.14 18:50:50 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'text' version : 2.3.0.1632 has not been found on the update center. +2024.01.14 18:50:50 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'vbnet' version : 9.8.0.76515 has not been found on the update center. +2024.01.14 18:50:50 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'web' version : 3.9.0.3600 has not been found on the update center. +2024.01.14 18:50:50 INFO web[AY0Hl+AzxUY1jOtIAABV][o.s.u.c.UpdateCenter] The plugin 'xml' version : 2.10.0.4108 has not been found on the update center.