diff options
author | Pawel Chojnacki <pawel@chojnacki.ws> | 2017-11-23 01:25:45 +0100 |
---|---|---|
committer | Pawel Chojnacki <pawel@chojnacki.ws> | 2017-11-23 23:33:01 +0100 |
commit | efe4cab92b1c93b2beb75fc6b4c0dbe0787d301e (patch) | |
tree | f06c337916d60a6fe50e557199af0b6e7aadcc01 /lib | |
parent | 84c5260f1240ebbe3aa136473324474b0cc0eb8a (diff) | |
download | gitlab-ce-efe4cab92b1c93b2beb75fc6b4c0dbe0787d301e.tar.gz |
check method timing threshold when observing method performance
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/metrics/method_call.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gitlab/metrics/method_call.rb b/lib/gitlab/metrics/method_call.rb index 5177d953795..03bdb5885a8 100644 --- a/lib/gitlab/metrics/method_call.rb +++ b/lib/gitlab/metrics/method_call.rb @@ -59,7 +59,7 @@ module Gitlab @cpu_time += cpu_time @call_count += 1 - if prometheus_enabled? + if prometheus_enabled? && above_threshold? self.class.call_real_duration_histogram.observe(@transaction.labels.merge(labels), real_time / 1000.0) self.class.call_cpu_duration_histogram.observe(@transaction.labels.merge(labels), cpu_time / 1000.0) end @@ -87,7 +87,7 @@ module Gitlab end def prometheus_enabled? - @prometheus_enabled ||= current_application_settings(:prometheus_metrics_method_instrumentation_enabled) + @prometheus_enabled ||= Gitlab::CurrentSettings.current_application_settings[:prometheus_metrics_method_instrumentation_enabled] end end end |