2020-03-24 14:07:55 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module Instrumentation
|
2020-06-04 08:08:21 -04:00
|
|
|
# Aggregates Redis measurements from different request storage sources.
|
2020-03-24 14:07:55 -04:00
|
|
|
class Redis
|
2020-06-04 08:08:21 -04:00
|
|
|
ActionCable = Class.new(RedisBase)
|
|
|
|
Cache = Class.new(RedisBase)
|
|
|
|
Queues = Class.new(RedisBase)
|
|
|
|
SharedState = Class.new(RedisBase)
|
|
|
|
|
|
|
|
STORAGES = [ActionCable, Cache, Queues, SharedState].freeze
|
2020-03-24 14:07:55 -04:00
|
|
|
|
2020-05-20 08:07:52 -04:00
|
|
|
# Milliseconds represented in seconds (from 1 to 500 milliseconds).
|
|
|
|
QUERY_TIME_BUCKETS = [0.001, 0.0025, 0.005, 0.01, 0.025, 0.05, 0.1, 0.25, 0.5].freeze
|
|
|
|
|
2020-06-04 08:08:21 -04:00
|
|
|
class << self
|
|
|
|
def detail_store
|
|
|
|
STORAGES.flat_map(&:detail_store)
|
|
|
|
end
|
2020-03-24 14:07:55 -04:00
|
|
|
|
2020-06-04 08:08:21 -04:00
|
|
|
%i[get_request_count query_time read_bytes write_bytes].each do |method|
|
|
|
|
define_method method do
|
|
|
|
STORAGES.sum(&method) # rubocop:disable CodeReuse/ActiveRecord
|
|
|
|
end
|
|
|
|
end
|
2020-03-24 14:07:55 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|