diff options
author | Rémy Coutable <remy@rymai.me> | 2016-08-02 12:12:42 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2016-08-02 12:12:42 +0000 |
commit | aac8dcf12cdd5b102b220d9b2f5dded2d1362ffc (patch) | |
tree | 4995dc1eeb6f195db6231c470a167a5451646ce3 | |
parent | 73772eca40e84554c089aaf028907c06e4be107a (diff) | |
parent | 946d3b132e6f8e95b7d8b95e32fd8231b835137d (diff) | |
download | gitlab-ce-aac8dcf12cdd5b102b220d9b2f5dded2d1362ffc.tar.gz |
Merge branch 'instrument-repository-class' into 'master'
Instrument the Repository class
## What does this MR do?
This MR instruments the Repository class.
## Are there points in the code the reviewer needs to double check?
No.
## Why was this MR needed?
This class wasn't instrumented.
## Does this MR meet the acceptance criteria?
- [x] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG) entry added
- [x] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides)
- [ ] Branch has no merge conflicts with `master` (if you do - rebase it please)
- [x] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits)
See merge request !5621
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | config/initializers/metrics.rb | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG index c099c63ce86..42476248256 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -6,6 +6,7 @@ v 8.11.0 (unreleased) - Remove magic comments (`# encoding: UTF-8`) from Ruby files. !5456 (winniehell) - Add support for relative links starting with ./ or / to RelativeLinkFilter (winniehell) - Fix CI status icon link underline (ClemMakesApps) + - The Repository class is now instrumented - Cache the commit author in RequestStore to avoid extra lookups in PostReceive - Fix of 'Commits being passed to custom hooks are already reachable when using the UI' - Add support for using RequestStore within Sidekiq tasks via SIDEKIQ_REQUEST_STORE env variable diff --git a/config/initializers/metrics.rb b/config/initializers/metrics.rb index f3cddac5b36..b68a09ce730 100644 --- a/config/initializers/metrics.rb +++ b/config/initializers/metrics.rb @@ -144,6 +144,7 @@ if Gitlab::Metrics.enabled? end config.instrument_methods(Rinku) + config.instrument_instance_methods(Repository) end GC::Profiler.enable |