Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-12-11Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-04Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-26Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-26Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-04Avoid calling freeze on already frozen strings in lib/gitlabdineshpanda
2019-07-29Further remove code branches by database typeAndreas Brandl
We dropped MySQL support and a lot of mysql specific code has been removed in https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/29608. This comes in from the other direction and removes any `if postgresql?` branches.
2019-07-10Add a rubocop for Rails.loggerMayra Cabrera
Suggests to use a JSON structured log instead Related to https://gitlab.com/gitlab-org/gitlab-ce/issues/54102
2019-05-05Run rubocop -a on CE filesStan Hu
2018-11-13Enable even more frozen string in lib/gitlabgfyoung
Enables frozen string for the following: * lib/gitlab/fogbugz_import/**/*.rb * lib/gitlab/gfm/**/*.rb * lib/gitlab/git/**/*.rb * lib/gitlab/gitaly_client/**/*.rb * lib/gitlab/gitlab_import/**/*.rb * lib/gitlab/google_code_import/**/*.rb * lib/gitlab/gpg/**/*.rb * lib/gitlab/grape_logging/**/*.rb * lib/gitlab/graphql/**/*.rb * lib/gitlab/graphs/**/*.rb * lib/gitlab/hashed_storage/**/*.rb * lib/gitlab/health_checks/**/*.rb Partially address gitlab-org/gitlab-ce#47424.
2018-09-11Disable existing offenses for the CodeReuse copsYorick Peterse
This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
2018-06-27Gitaly metrics check for read/writeabilityZeger-Jan van de Weg
Prior to this change, health checks checked for writeability of the NFS shards. Given we're moving away from that, this patch extends the checks for Gitaly to check for read and writeability. Potentially some dashboards will break, as over time these metrics will no longer appear as Prometheus doesn't get the data anymore. Observability in the circuit breaker will be reduced, but its not expected to be turned on and the circuit breaker is being removed soon too. Closes https://gitlab.com/gitlab-org/gitaly/issues/1218
2018-06-20More gitaly disk access blocksJacob Vosmaer (GitLab)
2018-06-15Rails5 fix connection execute return integer instead of stringJasper Maes
2018-06-01Add "deny disk access" Gitaly feature (tripswitch)Jacob Vosmaer (GitLab)
2018-03-21Route path lookups through legacy_disk_pathJacob Vosmaer
2018-03-08[CE] Add Naming/FileName rule checking expected class/module per filenameGabriel Mazetto
2018-01-25Add a gRPC health check to ensure Gitaly is upStan Hu
This will enable Geo to skip shards that not operational. Relates to gitlab-org/gitlab-ee#4329
2017-09-22Allow the git circuit breaker to correctly handle missing repository storagesNick Thomas
2017-09-21Don't memoize storage configuration on `FsShardsCheck`Bob Van Landuyt
These values are already coming from memory, so we don't need to memoize. If we do memoize these, than the would not be stubbed when calling `stub_storage_settings` in specs
2017-09-19Fix the filesystem shard health check to check all configured shardsNick Thomas
2017-08-29replace `is_successful?` with `successful?`Maxim Rydkin
2017-08-04Add a Circuitbreaker for storage pathsBob Van Landuyt
2017-07-27add comment explaining use of shell commands and file operations in the same ↵Pawel Chojnacki
methods
2017-07-26Remove unnecessary begin/endPawel Chojnacki
2017-07-26use `.zero?` instead of `== 0`Pawel Chojnacki
2017-07-26Stop abusing subject to store results,Pawel Chojnacki
+ add helper methods to cleanup fs_shards metrics
2017-07-25Fix redis check with_timing method usagePawel Chojnacki
2017-07-25Add Changelog about temp file removal fixPawel Chojnacki
+ remove whitespace
2017-07-25Ensure test files are deleted after testsPawel Chojnacki
2017-07-12Add unit to latency metrics.Ben Kochie
Add `seconds` unit to latency metrics based on uptream naming convention[0]. [0]: https://prometheus.io/docs/practices/naming/#metric-names
2017-07-11Support multiple Redis instances based on queue typePaul Charlton
2017-07-05Fix invalid Rails.logger call in lib/gitlab/health_checks/fs_shards_check.rbStan Hu
2017-06-07Use key? instead of has_key? methodPawel Chojnacki
2017-06-02Make PrometheusTextFormat return proper output terminated with '\n'Pawel Chojnacki
remove file dangling after rebase
2017-06-02Add missing trailing newlinesPawel Chojnacki
2017-06-02Split the metrics implementation to separate modules for Influx and PrometheusPawel Chojnacki
2017-06-02Add prometheus text formatterPawel Chojnacki
+ rename controler method to #index from #metrics + remove assertion from nullMetric
2017-06-02Move Prometheus presentation logic to PrometheusTextPawel Chojnacki
+ Use NullMetrics to mock metrics when unused + Use method_missing in NullMetrics mocking + Update prometheus gem to version that correctly uses transitive dependencies + Ensure correct folders are used in Multiprocess prometheus client tests. + rename Sessions controller's metric
2017-05-25Move helpers to spec file, use const's instead of helper methodsPawel Chojnacki
2017-05-17Fix transient CI errors by increasing command execution timeouts from 1s to 30sPawel Chojnacki
+ actually make local tests correctly detect wether 'timeout' or 'gtimeout' is available
2017-04-07Add /-/readiness /-/liveness and /-/health_metrics endpoints to track ↵Paweł Chojnacki
application readiness