summaryrefslogtreecommitdiff
path: root/lib/gitlab/rugged_instrumentation.rb
blob: 70c06e8b308e033aeca3deab4ccaefedd477715f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# frozen_string_literal: true

module Gitlab
  module RuggedInstrumentation
    def self.query_time
      SafeRequestStore[:rugged_query_time] ||= 0
    end

    def self.query_time=(duration)
      SafeRequestStore[:rugged_query_time] = duration
    end

    def self.query_time_ms
      (self.query_time * 1000).round(2)
    end

    def self.query_count
      SafeRequestStore[:rugged_call_count] ||= 0
    end

    def self.increment_query_count
      SafeRequestStore[:rugged_call_count] ||= 0
      SafeRequestStore[:rugged_call_count] += 1
    end

    def self.active?
      Gitlab::SafeRequestStore.active?
    end
  end
end