diff --git a/uut-example/cxx/src/ABCVarNameChecker.cc b/uut-example/cxx/src/ABCVarNameChecker.cc index bac6bb5..3724629 100644 --- a/uut-example/cxx/src/ABCVarNameChecker.cc +++ b/uut-example/cxx/src/ABCVarNameChecker.cc @@ -3,8 +3,4 @@ int main(void){ int ABC = 1; // error int abc = 2; return 0; -} - -void func1(){ - // TODO: add more tests } \ No newline at end of file diff --git a/uut-example/cxx/src/BufferDataChecker.cc b/uut-example/cxx/src/BufferDataChecker.cc new file mode 100644 index 0000000..e3efafc --- /dev/null +++ b/uut-example/cxx/src/BufferDataChecker.cc @@ -0,0 +1,63 @@ +#include +#include + +// 假设这是全局或类成员变量 +char buffer[1024]; +size_t bufferSize = sizeof(buffer); +size_t usedBufferSize = 0; + +void testOne(const char* data, size_t dataSize) { + // 检查要写入的数据是否超过缓冲区的剩余空间 +// if (dataSize > bufferSize - usedBufferSize) { +// std::cerr << "Error: Data size exceeds buffer remaining capacity." << std::endl; +// return; +// } + + // 安全地复制数据到缓冲区的剩余空间 + memcpy(buffer , data, dataSize);//error + // 更新缓冲区已使用的空间 + usedBufferSize += dataSize; +} + +void testTwo(const char* data, size_t dataSize) { + // 检查要写入的数据是否超过缓冲区的剩余空间 + // if (dataSize > bufferSize - usedBufferSize) { + // std::cerr << "Error: Data size exceeds buffer remaining capacity." << std::endl; + // return; + // } + + // 安全地复制数据到缓冲区的剩余空间 + strncpy(buffer, data, dataSize);//error + // 更新缓冲区已使用的空间 + usedBufferSize += dataSize; +} + +void testThree(const char* data, size_t dataSize) { + // 检查要写入的数据是否超过缓冲区的剩余空间 + // if (dataSize > bufferSize - usedBufferSize) { + // std::cerr << "Error: Data size exceeds buffer remaining capacity." << std::endl; + // return; + // } + + // 安全地复制数据到缓冲区的剩余空间 + memset(buffer, 0, dataSize);//error + // 更新缓冲区已使用的空间 + usedBufferSize += dataSize; +} + +int main() { + const char* testData = "Hello, World!"; + size_t testDataSize = strlen(testData) + 1; // 包含结束符'\0' + + testOne(testData, testDataSize); + testTwo(testData, testDataSize); + testThree(testData, testDataSize); + // 输出缓冲区内容以验证 + for (size_t i = 0; i < usedBufferSize; ++i) { + if (buffer[i] == '\0') break; + std::cout << buffer[i]; + } + std::cout << std::endl; + + return 0; +} \ No newline at end of file diff --git a/uut-example/cxx/src/CmdDataVerifyChecker.cc b/uut-example/cxx/src/CmdDataVerifyChecker.cc new file mode 100644 index 0000000..8a58f92 --- /dev/null +++ b/uut-example/cxx/src/CmdDataVerifyChecker.cc @@ -0,0 +1,22 @@ +#include +#include // 包含系统调用相关的头文件 + +int main() { + std::string command = "echo Hello, World!"; // 要构建的命令 +// if(command.contains("/") ){ +// } +// if(command == ""){ +// } + + // 使用system函数执行命令 + int result = system(command.c_str()); // error + + + if (result == 0) { + std::cout << "命令执行成功。" << std::endl; + } else { + std::cout << "命令执行失败。" << std::endl; + } + + return 0; +} diff --git a/uut-example/cxx/src/DLLVerifyChecker.cc b/uut-example/cxx/src/DLLVerifyChecker.cc new file mode 100644 index 0000000..0997071 --- /dev/null +++ b/uut-example/cxx/src/DLLVerifyChecker.cc @@ -0,0 +1,78 @@ +#include +#ifdef _WIN32 + #include +#else + #include +#endif + +int test1() +{ + std::string a = "your_dll.dll"; + std::wstring wideDLLName(a.begin(), a.end()); +// std::string v = "aa"; +// std::wstring wideA(v.begin(),v.end()); +// if (wideDLLName == wideA) { +// // 当 wideDLLName 等于 ANSI 字符串 "aa" 转换后的宽字符串时,这里的代码将被执行 +// } + HINSTANCE hInst = LoadLibrary(wideDLLName.c_str());//error + if (hInst == NULL) { + std::cout << "无法加载库" << std::endl; + return -1; + } + + typedef void (*FuncType)(); + FuncType func = (FuncType)GetProcAddress(hInst, "实际函数名"); + if (func == NULL) { + FreeLibrary(hInst); + std::cout << "无法获取函数" << std::endl; + return -1; + } + + func(); + FreeLibrary(hInst); + + return 0; +} + +#if !defined(_WIN32) +int test2() +{ + std::string b = "your_so_file.so"; +// if(b == ""){ +// } + void *handle = dlopen(b.c_str(), RTLD_LAZY);//error + if (!handle) { + std::cerr << "无法打开库: " << dlerror() << '\n'; + return 1; + } + + dlerror(); // 清除上一次调用产生的错误信息 + + typedef void (*FuncType)(); + FuncType func = (FuncType)dlsym(handle, "实际函数名"); + const char *dlsym_error = dlerror(); + if (dlsym_error) { + dlclose(handle); + std::cerr << "无法加载符号 '实际函数名':" << dlsym_error << '\n'; + return 1; + } + + func(); + dlclose(handle); + + return 0; +} +#endif + + +int main() +{ + // 调用对应平台的函数 + #ifdef _WIN32 + test1(); + #else + test2(); + #endif + + return 0; +} \ No newline at end of file diff --git a/uut-example/cxx/src/EncryptionAlgorithmChecker.cc b/uut-example/cxx/src/EncryptionAlgorithmChecker.cc new file mode 100644 index 0000000..9521a21 --- /dev/null +++ b/uut-example/cxx/src/EncryptionAlgorithmChecker.cc @@ -0,0 +1,23 @@ +#include +#include +#include +using namespace std; +using namespace bcrypt; + +int main() { + // 用户输入的原始密码 + string password = "userPassword123"; + + // 使用cpp-bcrypt生成盐和哈希 +// bcrypt::generate_salt(); // 生成一个随机盐 +// string salt = bcrypt::get_salt(); + + // 使用盐和密码生成哈希 +// string hashed_password; +// bcrypt::hashpw(password.c_str(), salt.c_str(), hashed_password); + + // 打印生成的哈希值 +// cout << "Generated bcrypt hash: " << hashed_password << endl; + + return 0; +} \ No newline at end of file diff --git a/uut-example/cxx/src/ErrorMessageChecker.cc b/uut-example/cxx/src/ErrorMessageChecker.cc new file mode 100644 index 0000000..d91c92e --- /dev/null +++ b/uut-example/cxx/src/ErrorMessageChecker.cc @@ -0,0 +1,27 @@ +#include +#include +using namespace std; + +class MyException : public std::exception { +public: + explicit MyException(const std::string& msg) : message(msg) {} + virtual const char* what() const noexcept override { + return message.c_str(); + } +private: + std::string message; +}; + +int main() { + try { + std::string weapon = "手枪"; + // 抛出一个异常 +// throw "C++ Exception" + an; + throw MyException(weapon); + } + catch (const char* e) { + // 捕获异常并处理 + cout << "Caught an exception: " << e << endl; + } + return 0; +} \ No newline at end of file diff --git a/uut-example/cxx/src/FVNRPassWordChecker.cc b/uut-example/cxx/src/FVNRPassWordChecker.cc new file mode 100644 index 0000000..61a72ac --- /dev/null +++ b/uut-example/cxx/src/FVNRPassWordChecker.cc @@ -0,0 +1,34 @@ +#include // error +#include // error +#include + +void encryptWithAES(const unsigned char* plaintext, size_t plaintext_len, + const unsigned char key[AES_BLOCK_SIZE], unsigned char* ciphertext) { + AES_KEY aes; + + // 初始化加密密钥 + if (AES_set_encrypt_key(key, 128, &aes) < 0) { + // 错误处理:密钥长度不正确等 + } + + // 分配足够的空间来存储结果,因为AES是块加密算法,需要对齐数据块 + unsigned char encrypted[AES_BLOCK_SIZE]; + + // 对明文分块加密(这里假设明文已经填充为完整的块) + for (size_t i = 0; i < plaintext_len; i += AES_BLOCK_SIZE) { + AES_encrypt(plaintext + i, encrypted, &aes); + memcpy(ciphertext + i, encrypted, AES_BLOCK_SIZE); + } +} + +int main() { + unsigned char plaintext[16] = { /* 填充原始数据 */ }; + unsigned char key[AES_BLOCK_SIZE] = { /* 填充密钥 */ }; + unsigned char ciphertext[16]; // 用于存储加密后的数据 + + encryptWithAES(plaintext, sizeof(plaintext), key, ciphertext); + + // ... 然后可以进一步处理密文 ... + + return 0; +} \ No newline at end of file diff --git a/uut-example/cxx/src/FVNRShaChecker.cc b/uut-example/cxx/src/FVNRShaChecker.cc new file mode 100644 index 0000000..9e9b1a1 --- /dev/null +++ b/uut-example/cxx/src/FVNRShaChecker.cc @@ -0,0 +1,35 @@ +#include +#include +#include +#include // error +#include +#include + +// 函数:计算给定字符串的SHA-256哈希值 +std::string calculateSHA256(const std::string& input) { + unsigned char hash[SHA256_DIGEST_LENGTH]; // SHA-256哈希值长度为32字节(256位) + + SHA256_CTX sha256; + SHA256_Init(&sha256); // 初始化上下文 + + SHA256_Update(&sha256, input.c_str(), input.size()); // 将输入数据添加到上下文中 + + SHA256_Final(hash, &sha256); // 计算哈希值并存储在hash数组中 + + // 转换为十六进制字符串形式以便输出或保存 + std::string output; + for (int i = 0; i < SHA256_DIGEST_LENGTH; ++i) { + char hex[3] = {0}; + sprintf(hex, "%02x", hash[i]); + output += hex; + } + + return output; +} + +int main() { + std::string data = "This is a test string to be hashed with SHA-256."; + std::cout << "SHA-256 Hash: " << calculateSHA256(data) << std::endl; + + return 0; +} \ No newline at end of file diff --git a/uut-example/cxx/src/FileAccessChecker.cc b/uut-example/cxx/src/FileAccessChecker.cc new file mode 100644 index 0000000..0d4dd4a --- /dev/null +++ b/uut-example/cxx/src/FileAccessChecker.cc @@ -0,0 +1,26 @@ +// FileAccessChecker +#include +#include +#include +using namespace std; + +int main() { + + string filePath = "C:\\Users\\user\\Desktop\\test.txt"; + + int a = 5; + + if (a<4) { + ifstream file(filePath); + + cout << "File opened successfully." << endl; + + file.close(); + } else { + + cerr << "Unable to open file: " << filePath << endl; + + } + + return 0; +} diff --git a/uut-example/cxx/src/FormatFunctionCheck.cc b/uut-example/cxx/src/FormatFunctionCheck.cc new file mode 100644 index 0000000..f6f8920 --- /dev/null +++ b/uut-example/cxx/src/FormatFunctionCheck.cc @@ -0,0 +1,25 @@ + + +int main() +{ + const char* name = "World"; + string name1 = "a"; + string name2 = "C"; + printf("Hello, %s!\n", name, name1.c_str(), name2.c_str()); + + char buffer1[50]; + sprintf(buffer1,"Hello, %s!\n",name,name1,name2); + + char buffer2[50]; + snprintf(buffer2, sizeof(buffer2), "Hello, %s!\n", name, name1.c_str(), name2.c_str()); + + FILE* fp = fopen("file.txt", "w"); + if (fp) { + fprintf(fp, "Hello, %s !\n", name, name1.c_str(), name2.c_str()); + fclose(fp); + } + + string formatted = format("Hello, {} !\n", name, name1, name2); + + return 0; +} \ No newline at end of file diff --git a/uut-example/cxx/src/HighEncryptDesChecker.cc b/uut-example/cxx/src/HighEncryptDesChecker.cc new file mode 100644 index 0000000..10c0f0f --- /dev/null +++ b/uut-example/cxx/src/HighEncryptDesChecker.cc @@ -0,0 +1,34 @@ +#include +#include +#include +#include // error + +#include + +// AES-256 加密示例 +void aes256_encrypt(const unsigned char* plaintext, size_t plaintext_len, + const unsigned char key[AES_BLOCK_SIZE], unsigned char iv[AES_BLOCK_SIZE], + unsigned char* ciphertext) { + AES_KEY aes; + + // 初始化加密密钥 + if (AES_set_encrypt_key(key, 256, &aes) < 0) { + // 错误处理:密钥长度不正确等 + } + + // 创建一个用于CBC模式的加密上下文结构体 + AES_cbc_encrypt(plaintext, ciphertext, plaintext_len, &aes, iv, AES_ENCRYPT); +} + +int main() { + unsigned char plaintext[AES_BLOCK_SIZE] = { /* 填充原始数据 */ }; + unsigned char key[AES_BLOCK_SIZE] = { /* 填充密钥 */ }; + unsigned char iv[AES_BLOCK_SIZE] = { /* 填充初始化向量(IV) */ }; + unsigned char ciphertext[AES_BLOCK_SIZE]; + + aes256_encrypt(plaintext, sizeof(plaintext), key, iv, ciphertext); + + // ... 然后可以进一步处理密文 ... + + return 0; +} \ No newline at end of file diff --git a/uut-example/cxx/src/HostIdentityVerifyChecker.cc b/uut-example/cxx/src/HostIdentityVerifyChecker.cc new file mode 100644 index 0000000..d1d04f9 --- /dev/null +++ b/uut-example/cxx/src/HostIdentityVerifyChecker.cc @@ -0,0 +1,80 @@ +#include +#include +#include +// 本示例中对合规代码进行了注释 + +// 假设有一个函数去异步验证用户名和密码 +/*void verify_credentials(const std::string& username, const std::string& password) { + // 如果验证成功,则执行相应操作 + if (is_valid(username, password)) { + std::cout << "Authentication successful." << std::endl; + } else { + std::cout << "Invalid credentials." << std::endl; + } +}*/ + +int main() { + /*std::string user_name, pass_word; + std::cout << "Enter your username: "; + std::cin >> user_name; + std::cout << "Enter your password: "; + std::getline(std::cin, pass_word); + + // 调用验证函数 + verify_credentials(user_name, pass_word);*/ + + return 0; +} + +#include +#include +#include +#include + +bool verifyCertificate(const std::string& certPath) { + // 初始化OpenSSL库 + /*SSL_library_init(); + OpenSSL_add_all_algorithms(); + ERR_load_crypto_strings(); + + // 加载证书文件 + FILE* certFile = fopen(certPath.c_str(), "r"); + if (!certFile) { + perror("Failed to open certificate file"); + return false; + } + + X509* x509Cert = PEM_read_X509(certFile, NULL, NULL, NULL); + fclose(certFile); + + if (!x509Cert) { + ERR_print_errors_fp(stderr); + return false; + } + + // 这里只做简单的证书有效性检查,真实场景下需要构建完整的信任链并验证到根CA + int result = X509_verify(x509Cert, NULL); + + + // 释放资源 + X509_free(x509Cert); + + // 返回验证结果 + return (result == 1);*/ +} + +int main2() { + const std::string certPath = "/path/to/certificate.pem"; + bool isVerified = verifyCertificate(certPath); + if (isVerified) { + std::cout << "The certificate has been verified successfully." << std::endl; + } else { + std::cout << "Failed to verify the certificate." << std::endl; + } + + // 清理OpenSSL库 + EVP_cleanup(); + ERR_free_strings(); + + return 0; +} \ No newline at end of file diff --git a/uut-example/cxx/src/IntegerCountVerifyChecker.cc b/uut-example/cxx/src/IntegerCountVerifyChecker.cc new file mode 100644 index 0000000..7f19d4f --- /dev/null +++ b/uut-example/cxx/src/IntegerCountVerifyChecker.cc @@ -0,0 +1,14 @@ +#include +int main() { + int num1, num2; + // 输入两个整数 +// std::cout << "请输入两个整数:"; + std::cin >> num1 >> num2; + // 执行算术运算并打印结果 +// if(num1 > 0){ +// } + std::cout << "两数之和:" << num1 + num2 << std::endl; +// std::cout << "两数之差:" << num1 - num2 << std::endl; +// std::cout << "两数之积:" << num1 * num2 << std::endl; + return 0; +} \ No newline at end of file diff --git a/uut-example/cxx/src/LogChecker.log b/uut-example/cxx/src/LogChecker.log new file mode 100644 index 0000000..9b871dc --- /dev/null +++ b/uut-example/cxx/src/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. diff --git a/uut-example/cxx/src/LogFileWriteChecker.cc b/uut-example/cxx/src/LogFileWriteChecker.cc new file mode 100644 index 0000000..4403db9 --- /dev/null +++ b/uut-example/cxx/src/LogFileWriteChecker.cc @@ -0,0 +1,58 @@ +#include +#include +#include +#include +#include +#include + +//std::string username = "user1"; +//std::string orgName = "org1"; +//std::string armsName = "arms1"; + + +//创建一个rotating file sink,日志文件大小达到1MB时滚动并创建新的日志文件,最多保存3个历史文件 +auto rotating_logger = spdlog::rotating_logger_mt("my_logger", "logs/mylogfile.log", 1048576, 3); +// 设置日志级别为info及以上 +rotating_logger->set_level(spdlog::level::info); + +int writeLogFile1() { + +// // 写入不同级别的日志信息 +// rotating_logger->debug("This is an debug message"); +// rotating_logger->info("This is an info message"); +// rotating_logger->warn("This is a warning"); +// rotating_logger->error("This is an error"); + rotating_logger->debug( username); // error + rotating_logger->info("This is an info message" + armsName); // error + rotating_logger->warn("This is a warning, {}", armsName); // error + rotating_logger->error("This is an error" + armsName); // error + + return 0; +} + +//log4cpp::Category &myCat = log4cpp::Category::getInstance(std::string("MyCategory")); + +int writeLogFile2() { +// log4cpp::PatternLayout* layout = new log4cpp::PatternLayout(); +// layout->setConversionPattern("%d{%Y-%m-%d %H:%M:%S} [%p] %c: %m%n"); +// +// // 创建FileAppender,并关联布局 +// log4cpp::FileAppender *fileAppender = new log4cpp::FileAppender("fileAppender", "logs/mylogfile.log"); +// fileAppender->setLayout(layout); +// +// // 获取或创建一个category,并将appender添加给它 +// log4cpp::Category& root = log4cpp::Category::getRoot(); +// root.addAppender(fileAppender); +// root.setPriority(log4cpp::Priority::INFO); // 设置最低记录的日志级别 + + // 写入不同级别的日志信息 + log4cpp::Category &myCat = log4cpp::Category::getInstance(std::string("MyCategory")); + myCat.debug("This is an debug message %s, %s", username, orgName); // error + myCat.info("This is an info message" + armsName); // error + myCat.warn("This is a warning, {}", armsName); // error + myCat.error("This is an error" + armsName); // error + + delete layout; + + return 0; +} \ No newline at end of file diff --git a/uut-example/cxx/src/NumericalCopyChecker.cc b/uut-example/cxx/src/NumericalCopyChecker.cc new file mode 100644 index 0000000..22df436 --- /dev/null +++ b/uut-example/cxx/src/NumericalCopyChecker.cc @@ -0,0 +1,22 @@ +#include + +class MyClass { +private: + std::array privateArray; +public: +// 假设初始化已经在构造函数或其他地方完成 +// 返回的是私有数组的副本 +// const std::array getPrivateArrayRef() const { +// return privateArray; +// } + + // 返回的是私有数组的引用 + std::array& getPrivateArrayRef() { + return privateArray; // error + } + + // 返回的是私有数组的指针 + int* getPrivateArrayPtr() { + return privateArray.data(); // error + } +} \ No newline at end of file diff --git a/uut-example/cxx/src/PRNGVerifyChecker.cc b/uut-example/cxx/src/PRNGVerifyChecker.cc new file mode 100644 index 0000000..f4a275c --- /dev/null +++ b/uut-example/cxx/src/PRNGVerifyChecker.cc @@ -0,0 +1,18 @@ +#include +#include +#include + +int main(){ + std::random_device rd; // 用于获取非确定性随机种子 + + std::mt19937 generator(rd()); // 使用更好的随机种子初始化mt19937 + std::cout << generator() << std::endl; + + std::ranlux24_base rlbGenerator(rd()); // 使用更好的随机种子初始化ranlux24_base + std::cout << rlbGenerator() << std::endl; + + std::knuth_b knuthGenerator(rd()); // 使用更好的随机种子初始化knuth_b + std::cout << knuthGenerator() << std::endl; + + return 0; +} \ No newline at end of file diff --git a/uut-example/cxx/src/PassWordCountChecker.cc b/uut-example/cxx/src/PassWordCountChecker.cc new file mode 100644 index 0000000..2d17bd4 --- /dev/null +++ b/uut-example/cxx/src/PassWordCountChecker.cc @@ -0,0 +1,20 @@ +#include +#include +#include // 引入std::hash + +int test(std::string& input) { +// input = "example" + "1234"; + + // 正确实例化并使用std::hash + std::hash hasher; + size_t hash_value = hasher(input); + std::cout << "Hash value using std::hash: " << hash_value << std::endl; + + return 0; +} + +int main() { + std::string input; + test(input); + return 0; +} \ No newline at end of file diff --git a/uut-example/cxx/src/PathVerifyChecker.cc b/uut-example/cxx/src/PathVerifyChecker.cc new file mode 100644 index 0000000..2ba590a --- /dev/null +++ b/uut-example/cxx/src/PathVerifyChecker.cc @@ -0,0 +1,8 @@ +#include +int main() { + //std::string a = "/path/to/your/file.txt"; + std::string a = "path/to/your/file.txt"; + std::string testString1 = "User\\Documents"; + //std::String testString1 = "C:\\Users\\User\\Documents"; + return 0; +} \ No newline at end of file diff --git a/uut-example/cxx/src/ReallocMainChecker.cc b/uut-example/cxx/src/ReallocMainChecker.cc new file mode 100644 index 0000000..d38dcb5 --- /dev/null +++ b/uut-example/cxx/src/ReallocMainChecker.cc @@ -0,0 +1,39 @@ +#include // 为了使用 memset + +struct User { + char name[50]; + int age; +}; + +int main() { + // 正确初始化指针 + User* users = nullptr; + + // 首次分配内存 + users = new User[5]; + + // 在重新分配之前,确保已正确初始化或清空(如果需要的话) + // 注意:对于结构体中的对象成员,这可能并不必要,因为它们在新分配的内存中会被自动初始化为默认值 + // memset(users, 0, 5 * sizeof(User)); // 如果确实需要清零整个结构体内容可以使用这个,但对于包含对象的数据类型不一定适用 + + // 使用realloc()函数重新分配内存块 - C++ 中应使用 new 进行动态内存管理 + // 用户 struct 是内置类型的组合,在 C++ 中通常不会用 realloc,而是使用 new 进行重新分配 + // 如果坚持使用 realloc 的话,这段代码应该在 C 程序中,并且需要先检查 users 是否为 nullptr + // users = (User*)realloc(users, 10 * sizeof(User)); + + // C++ 中使用 new 进行重新分配 + User* tempUsers = new User[10]; + if (users != nullptr) { + users = (User*)realloc(users, 10 * sizeof(User)); + //std::memcpy(tempUsers, users, 5 * sizeof(User)); // 复制已有数据到新内存 + delete[] users; // 释放旧内存 + } + users = tempUsers; + + // 继续使用重新分配后的内存块... + + // 最后释放内存 + delete[] users; + + return 0; +} \ No newline at end of file diff --git a/uut-example/cxx/src/SQLVerifyChecker.cc b/uut-example/cxx/src/SQLVerifyChecker.cc new file mode 100644 index 0000000..3da1408 --- /dev/null +++ b/uut-example/cxx/src/SQLVerifyChecker.cc @@ -0,0 +1,53 @@ +#include +#include // MySQL Connector/C++库头文件 +#include + +// 假设你已经有了一个sanitizeString函数,用于清理SQL注入风险 +std::string sanitizeString(const std::string& input) { + // 在这里实现SQL字符串清理逻辑 + return cleanedInput; +} + +int main() { + try { + sql::mysql::MySQL_Driver *driver; + sql::Connection *con; + + // 初始化数据库连接 + driver = sql::mysql::get_mysql_driver_instance(); + con = driver->connect("tcp://127.0.0.1:3306", "username", "password"); + con->setSchema("your_database"); + + std::string inputQuery = ""; + std::cout << "请输入SQL查询语句: "; + std::getline(std::cin, inputQuery); + + // 对输入的SQL语句进行验证和处理 + std::string sqlQuery = sanitizeString(inputQuery); + + // 创建并执行SQL语句 + sql::Statement *stmt = con->createStatement(); + sql::ResultSet *res = stmt->executeQuery(sqlQuery); + + // 处理查询结果 + while (res->next()) { + // 从结果集中获取数据并进行处理 + // 这里假设你知道第一列的名字,如果不是,请替换为实际列名 + std::string resultData = res->getString("your_column_name"); + std::cout << "查询结果: " << resultData << std::endl; + } + + delete stmt; + delete res; + delete con; + } + catch (sql::SQLException &e) { + std::cerr << "# ERR: SQLException in " << __FILE__; + std::cerr << "(" << __FUNCTION__ << ") on line " << __LINE__ << std::endl; + std::cerr << "# ERR: " << e.what(); + std::cerr << " (MySQL error code: " << e.getErrorCode(); + std::cerr << ", SQLState: " << e.getSQLState() << " )" << std::endl; + } + + return 0; +} \ No newline at end of file diff --git a/uut-example/cxx/src/SendMessageChecker.cc b/uut-example/cxx/src/SendMessageChecker.cc new file mode 100644 index 0000000..85eaa07 --- /dev/null +++ b/uut-example/cxx/src/SendMessageChecker.cc @@ -0,0 +1,19 @@ +#include +#include +#include +#include + +int main() { + int socket_fd = socket(AF_INET, SOCK_STREAM, 0); + sockaddr_in server_address; + // 初始化服务器地址结构体... + connect(socket_fd, (struct sockaddr*)&server_address, sizeof(server_address)); + + std::string param = "Hello, Server!"; + send(socket_fd,param.c_str(), param.size()); // 发送信息 + + // ...其他处理,如关闭连接等 + close(socket_fd); + + return 0; +} \ No newline at end of file diff --git a/uut-example/cxx/src/UserInputPasswordChecker.cc b/uut-example/cxx/src/UserInputPasswordChecker.cc new file mode 100644 index 0000000..77e29a7 --- /dev/null +++ b/uut-example/cxx/src/UserInputPasswordChecker.cc @@ -0,0 +1,49 @@ +#include +#include +#include +#include +#include +#include +class LoginDialog : public QDialog +{ +public: + LoginDialog(QWidget *parent = nullptr) + : QDialog(parent) + { + setWindowTitle("注册界面"); + // 设置用户名输入框 + QLineEdit *usernameLineEdit = new QLineEdit; + usernameLineEdit.setPlaceholderText("请输入用户名"); + // 设置密码输入框 + QLineEdit *passwordLineEdit = new QLineEdit; // error 应对口领域进行演示 + //passwordLineEdit->setEchoMode(QLineEdit::Password); + passwordLineEdit->setPlaceholderText("请输入密码"); + // 设置密码输入框 + QLineEdit rePasswordLineEdit = new QLineEdit; // error 应对口领域进行演示 + //rePasswordLineEdit.setEchoMode(QLineEdit::Password); + rePasswordLineEdit.setPlaceholderText("请在次输入密码"); + // 设置登录按钮 + QPushButton *loginButton = new QPushButton("注册"); + connect(loginButton, &QPushButton::clicked, this, [=this]() { + if (usernameLineEdit->text().isEmpty() || passwordLineEdit->text().isEmpty()) { + QMessageBox::warning(this, "警告", "用户名或密码不能为空!"); + } else { + // 在此处验证用户名和密码... + } + }); + // 使用表单布局设置窗口布局 + QFormLayout *formLayout = new QFormLayout; + formLayout->addRow("用户名:", usernameLineEdit); + formLayout->addRow("密码:", passwordLineEdit); + formLayout->addRow("再次输入密码:", passwordLineEdit); + formLayout->addWidget(loginButton); + setLayout(formLayout); + } +}; +int main(int argc, char *argv[]) +{ + QApplication app(argc, argv); + LoginDialog dialog; + dialog.show(); + return app.exec(); +} \ No newline at end of file diff --git a/uut-example/cxx/src/ValidatePasswordCheck.cc b/uut-example/cxx/src/ValidatePasswordCheck.cc new file mode 100644 index 0000000..da35b33 --- /dev/null +++ b/uut-example/cxx/src/ValidatePasswordCheck.cc @@ -0,0 +1,7 @@ +#include +using namespace std; + +int main() { + string password = "1111111111"; // error + return 0; +} diff --git a/uut-example/cxx/src/VerificationPathChecker.cc b/uut-example/cxx/src/VerificationPathChecker.cc new file mode 100644 index 0000000..187f0e3 --- /dev/null +++ b/uut-example/cxx/src/VerificationPathChecker.cc @@ -0,0 +1,19 @@ +#include +#include +using namespace std; + +// 假设以下两个函数用于检查和验证路径 +void checkPath(const string& path); +void verifyPath(const string& path); + +int main(){ + string userPath; + cin >> userPath; + + // 在获取用户输入之后立即对其进行验证 +// checkPath(userPath); +// verifyPath(userPath); + + // 示例程序通常在这里处理路径并结束 + return 0; +} \ No newline at end of file diff --git a/uut-example/cxx/src/VirtualLockUsageChecker.cc b/uut-example/cxx/src/VirtualLockUsageChecker.cc new file mode 100644 index 0000000..6cb5daf --- /dev/null +++ b/uut-example/cxx/src/VirtualLockUsageChecker.cc @@ -0,0 +1,32 @@ +#include +#include +#include +using namespace std; + +int main() { + + string add = "北京市"; //error + + string keyword2 = "北京市"; //error + + string keyword3 = "北京市"; //error + + // 利用vector管理内存 +// vector addressBuffer(add.begin(), add.end()); +// +// addressBuffer.push_back('\0'); +// +// BOOL bResult = VirtualLock(addressBuffer.data(), addressBuffer.size()); +// if (bResult == FALSE) { +// return 1; +// } +// +// +// // 解除锁定 +// bResult = VirtualUnlock(addressBuffer.data(), addressBuffer.size()); +// if (bResult == FALSE) { +// return 1; +// } +// +// return 0; +} \ No newline at end of file