debian-mirror-gitlab/lib/gitlab/rugged_instrumentation.rb

46 lines
1.1 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
module Gitlab
module RuggedInstrumentation
def self.query_time
2020-06-23 00:09:42 +05:30
query_time = SafeRequestStore[:rugged_query_time] || 0
2020-05-24 23:13:21 +05:30
query_time.round(Gitlab::InstrumentationHelper::DURATION_PRECISION)
2019-10-12 21:52:04 +05:30
end
2020-06-23 00:09:42 +05:30
def self.add_query_time(duration)
SafeRequestStore[:rugged_query_time] ||= 0
SafeRequestStore[:rugged_query_time] += duration
2019-10-12 21:52:04 +05:30
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?
SafeRequestStore.active?
end
def self.add_call_details(details)
2019-12-04 20:38:33 +05:30
return unless Gitlab::PerformanceBar.enabled_for_request?
2019-10-12 21:52:04 +05:30
Gitlab::SafeRequestStore[:rugged_call_details] ||= []
Gitlab::SafeRequestStore[:rugged_call_details] << details
end
def self.list_call_details
2019-12-04 20:38:33 +05:30
return [] unless Gitlab::PerformanceBar.enabled_for_request?
2019-10-12 21:52:04 +05:30
Gitlab::SafeRequestStore[:rugged_call_details] || []
end
end
end