aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-process/src/main/java/org/sonar/process/ProcessProperties.java
Commit message (Collapse)AuthorAgeFilesLines
* SONAR-25142 Customize the session expirationGuillaume Péoc'h2025-05-231-1/+4
|
* SONAR-24146 Update license headers for 2025Matteo Mara2025-01-091-1/+1
|
* SONAR-21771 added libraries to help users connect to MSSQL database with ↵Lukasz Jarocki2025-01-071-0/+1
| | | | ActiveDirectory and Entra ID
* SONAR-22479 Implement sending new telemetry metricsAlain Kermis2024-07-241-0/+1
|
* NO-JIRA Update license headers to 2024Pierre2024-01-031-1/+1
|
* SONAR-20540 Use proxy settings in DefaultHttpDownloaderWojtek Wajerowicz2023-11-081-2/+3
|
* SONAR-20328 Upgrade sonar-orchestrator version and update affected tests ↵Dimitris Kavvathas2023-09-071-1/+1
| | | | from breaking changes.
* SONAR-14853 Elasticsearch http encryptionEric Giffon2023-06-201-0/+2
|
* [NO-JIRA] Drop blue green deployment flagJacek Poreda2023-02-091-3/+0
|
* Update license templates for 2023Pierre2023-01-021-1/+1
|
* SONAR-17800 Reduce default `sonar.jdbc.keepaliveTime` to 3minJacek2022-12-201-1/+1
| | | | It helps to avoid idle connections to be killed by infrastracture configuration
* SONAR-17762 Allow customization of HikariCP configurationJacek2022-12-131-0/+5
|
* SONAR-17152 removed deprecated license format supportPierre2022-10-311-1/+3
|
* SONAR-17413 Compress telemetry payloadPierre2022-10-071-0/+1
|
* SONAR-17197 change telemetry to once a dayPierre Guillot2022-09-051-1/+1
|
* SONAR-17200 Move to HikariCP from Apache DBCPJacek2022-08-291-5/+2
|
* SONAR-16449 remove SonarCloud references in SonarQube codebasePierre Guillot2022-06-071-6/+0
|
* feat: support configuration of the tomcat keepAliveTimeoutjason.damour2022-03-111-0/+1
|
* Update license headers for 2022 [update headers]Pierre2022-01-281-1/+1
|
* SONAR-13997 Allow to override 'sonar.es.bootstrap.checks.disable'Jacek2022-01-271-0/+1
| | | | | - default for jdbc other than H2 to check es bootstrap at startup - default for H2 to not check es bootstrap at startup
* SONAR-15631 - Refactor UTs to stop using ExpectedExceptionKlaudio Sinani2021-11-191-2/+0
|
* SONAR-15243 Enable JSON logging on Elasticsearch processJacek2021-08-111-6/+8
|
* SONAR-15230 Enable DNS lookup in k8s for HZJacek2021-07-291-0/+1
|
* SONAR-15192 Disable ip addr validation for sonar.cluster.es.hostsJacek2021-07-211-0/+1
| | | | * provide new propert sonar.cluster.es.discovery.seed.hosts to allow dynamic node discovery in k8s
* SONAR-14682 - Make webhook validation configurableBelen Pruvost2021-04-291-1/+0
|
* SONAR-14583 Added properties needed for elasticsearch authenticationLukasz Jarocki2021-04-231-0/+7
|
* Update license headers for 2021 [update headers]Wouter Admiraal2021-01-081-1/+1
|
* SONAR-14039 replace 'sonar.search.transportPort' with 'sonar.es.port' on non-DCEJacek2020-11-051-4/+12
|
* SONAR-13979 Fail when sonar.search.host or sonar.search.port are defined in DCEMichal Duda2020-11-051-5/+13
| | | | - Orchestrator upgrade was required as by default it was setting these properties
* SONAR-13971 Add properties to configure ES network in DCEMichal Duda2020-11-051-0/+7
|
* SONAR-12686 upgrade es client to 7.9.3 and move to HTTPJacek2020-11-051-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - add should minimum match eq 1 to user index queries ES 7.X changed behaviour in case filter query with bool it defaults to '0' https://www.elastic.co/guide/en/elasticsearch/reference/7.x/breaking-changes-7.0.html#_the_filter_context_has_been_removed - fix issue index routing param ES 7.X helped discover this bug as new setting has been auto configured which is 'index.number_of_routing_shards'. This has changed how documents are distributed across shards depending on how many shards the index has. Without that change issues docs has been incorrectly routed to the same shard hash as projects and it worked no matter what routing key you used projectUuid or auth_projectUuid. - update ngram and edge_ngram names to match with es 7.x nGram and edgeNgram has been deprecated in favour of ngram and edge_ngram https://www.elastic.co/guide/en/elasticsearch/reference/current/breaking-changes-7.0.html#deprecated-ngram-edgengram-token-filter-cannot-be-used - remove `_all : enabled` usage from UT This field was already deprecated in 6.X, now it has been removed. https://www.elastic.co/guide/en/elasticsearch/reference/current/breaking-changes-7.0.html#all-meta-field-removed - add Elasticsearch High Level REST client dependency - use sonar.search.port for ES HTTP - main process use ES Rest client to check ES status - sonar.cluster.search.hosts has HTTP ports on APP nodes also sonar.search.port and sonar.search.host MUST be configured on each Search node with the host and HTTP port of the current node - use Elasticsearch high level rest client - use in EsTester - use as primary es client - use indices api to get all indices name instead of cluster api - use cluster health api to check cluster state - support raw requests for 'nodes/_stats' and '_cluster/stats' - support raw requests for 'indices/_stats' - leave netty4plugin as testCompile dependency it is used in UTs - all ES non-test calls go through EsClient class - add rest client ES profiling
* SONAR-12686 fix ES discovery settings in cluster modeSébastien Lesaint2020-11-051-1/+0
| | | | | deprecated "discovery.zen.ping.unicast.hosts" has been removed, "discovery.seed_hosts" should be used instead "discovery.zen.minimum_master_nodes" is ignored now: stop setting it and drop sonar property "sonar.search.minimumMasterNodes"
* SONAR-12686 MaxDirectMemorySize JVM option should be defined for ESSébastien Lesaint2020-11-051-1/+1
| | | | | | | | This option was set by default in ES 6.X already but we had missed it. ES sets it to half the max heap from Java code (see class JvmErgonomics) To not have to get into the complexity of interpreting options to know what is the configured max heap, we just add this option to the defaults and document it
* SONAR-13341 fix SSF-110Michal Duda2020-06-301-0/+1
|
* SONAR-13272 fix issue with setting some properties through env variablesMichal Duda2020-04-141-1/+52
|
* SONAR-13078 enable configuring the server by environment variablesMichal Duda2020-02-221-0/+5
|
* SONAR-12955 support IPv6 in cluster propertiesSébastien Lesaint2020-02-201-8/+4
| | | | and consistently valid adresses
* Format all headers for 2020Wouter Admiraal2020-01-071-1/+1
|
* SC-795 drop unused code on Bitbucket CloudSimon Brandhof2019-07-261-3/+0
|
* SONAR-12279 Swap Elasticsearch options to match conventioncolin-mueller-sonarsource2019-07-121-1/+1
|
* SONAR-11251 add http.nonProxyHosts to sonar.propertiesSébastien Lesaint2019-06-111-1/+1
|
* SONAR-12043 graceful shutdown timeout configurable for ITsSébastien Lesaint2019-06-031-0/+10
|
* SONAR-12109 Web Analytics plugins (#1652)Grégoire Aubert2019-05-231-1/+0
|
* SONAR-11720 Set different memory defaults for EE+Michal Duda2019-05-211-4/+28
|
* SONARCLOUD-615 Add Google Tag ManagerSiegfried Ehret2019-05-131-1/+2
|
* SONAR-11793 Rename GA tracking property to 'sonar.analytics.ga.trackingId'Wouter Admiraal2019-04-251-1/+1
|
* SONARCLOUD-520 change location of homepage data fileSimon Brandhof2019-04-111-0/+1
|
* SONAR-11615 Drop "sonar.onboardingTutorial.showToNewUsers" settingStas Vilchik2019-01-161-0/+1
|
* Fix license headers for 2019Duarte Meneses2019-01-021-1/+1
|
* SONARCLOUD-68 Add google analytics to SonarCloudGrégoire Aubert2018-06-211-3/+1
|