diff options
author | Yorick Peterse <yorickpeterse@gmail.com> | 2015-11-25 11:29:48 +0000 |
---|---|---|
committer | Yorick Peterse <yorickpeterse@gmail.com> | 2015-11-25 11:29:48 +0000 |
commit | ef2bc0f0bf206198a1f4097cc3a5d2fb47ceb007 (patch) | |
tree | ab0baca6ab80a7727547f651ba8475619ac46b7b /lib | |
parent | 4cfc3df534c50957725f7e1f80c82f88fd764f70 (diff) | |
parent | 97f8c6279fc39c4bad87bb880eba04802f6d351d (diff) | |
download | gitlab-ce-ef2bc0f0bf206198a1f4097cc3a5d2fb47ceb007.tar.gz |
Merge branch 'sherlock-total-query-time' into 'master'
Added total query time to Sherlock
This makes it easier to see if a problem is caused by slow queries or
slow Ruby code (unrelated to any SQL queries that might be used).
See merge request !1887
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/sherlock/transaction.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/gitlab/sherlock/transaction.rb b/lib/gitlab/sherlock/transaction.rb index d87a4c9bb4a..3489fb251b6 100644 --- a/lib/gitlab/sherlock/transaction.rb +++ b/lib/gitlab/sherlock/transaction.rb @@ -36,6 +36,11 @@ module Gitlab @duration ||= started_at && finished_at ? finished_at - started_at : 0 end + # Returns the total query duration in seconds. + def query_duration + @query_duration ||= @queries.map { |q| q.duration }.inject(:+) / 1000.0 + end + def to_param @id end |