summaryrefslogtreecommitdiff
path: root/lib/gitlab/grape_logging/loggers/perf_logger.rb
blob: e3b9c59bd6eb00b1dde3587776ca5717d18f8fc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

# This module adds additional performance metrics to the grape logger
module Gitlab
  module GrapeLogging
    module Loggers
      class PerfLogger < ::GrapeLogging::Loggers::Base
        def parameters(_, _)
          { gitaly_calls: Gitlab::GitalyClient.get_request_count }
        end
      end
    end
  end
end