diff options
Diffstat (limited to 'doc/development/instrumentation.md')
-rw-r--r-- | doc/development/instrumentation.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/instrumentation.md b/doc/development/instrumentation.md index 7761f65d78a..014fd4583cf 100644 --- a/doc/development/instrumentation.md +++ b/doc/development/instrumentation.md @@ -51,7 +51,7 @@ Instrumenting an entire class hierarchy: ```ruby Gitlab::Metrics::Instrumentation.configure do |conf| - conf.instrument_class_hierarchy(ActiveRecord::Base) + conf.instrument_class_hierarchy(ApplicationRecord) end ``` |