diff options
author | Yorick Peterse <yorickpeterse@gmail.com> | 2015-12-15 17:23:23 +0100 |
---|---|---|
committer | Yorick Peterse <yorickpeterse@gmail.com> | 2015-12-17 17:25:48 +0100 |
commit | bcee44ad33d8a84822a8df068d47812594c445a3 (patch) | |
tree | 7433df4afefe513e3593cb25e0ed781d3f4c7fa4 /Gemfile | |
parent | a93a32a290c8e134763188ebd2b62935f5698e6c (diff) | |
download | gitlab-ce-bcee44ad33d8a84822a8df068d47812594c445a3.tar.gz |
Instrument all ActiveRecord model methods
This works by searching the raw source code for any references to
commonly used ActiveRecord methods. While not bulletproof it saves us
from having to list hundreds of methods by hand. It also ensures that
(most) newly added methods are instrumented automatically.
This _only_ instruments models defined in app/models, should a model
reside somewhere else (e.g. somewhere in lib/) it _won't_ be
instrumented.
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -210,6 +210,7 @@ gem 'net-ssh', '~> 3.0.1' # Metrics group :metrics do + gem 'method_source', '~> 0.8', require: false gem 'influxdb', '~> 0.2', require: false gem 'connection_pool', '~> 2.0', require: false end |