summaryrefslogtreecommitdiff
path: root/lib/gitlab/grape_logging/loggers/perf_logger.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/grape_logging/loggers/perf_logger.rb')
-rw-r--r--lib/gitlab/grape_logging/loggers/perf_logger.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/gitlab/grape_logging/loggers/perf_logger.rb b/lib/gitlab/grape_logging/loggers/perf_logger.rb
index e3b9c59bd6e..18ea3a8d2f3 100644
--- a/lib/gitlab/grape_logging/loggers/perf_logger.rb
+++ b/lib/gitlab/grape_logging/loggers/perf_logger.rb
@@ -6,7 +6,10 @@ module Gitlab
module Loggers
class PerfLogger < ::GrapeLogging::Loggers::Base
def parameters(_, _)
- { gitaly_calls: Gitlab::GitalyClient.get_request_count }
+ {
+ gitaly_calls: Gitlab::GitalyClient.get_request_count,
+ gitaly_duration: Gitlab::GitalyClient.query_time_ms
+ }
end
end
end