debian-mirror-gitlab/lib/gitlab/usage/metrics/instrumentations/base_metric.rb
2022-08-27 11:52:29 +05:30

42 lines
902 B
Ruby

# frozen_string_literal: true
module Gitlab
module Usage
module Metrics
module Instrumentations
class BaseMetric
include Gitlab::Utils::UsageData
include Gitlab::Usage::TimeFrame
attr_reader :time_frame
attr_reader :options
class << self
def available?(&block)
return @metric_available = block if block
return @metric_available.call if instance_variable_defined?('@metric_available')
true
end
attr_reader :metric_available
end
def initialize(time_frame:, options: {})
@time_frame = time_frame
@options = options
end
def instrumentation
value
end
def available?
self.class.available?
end
end
end
end
end
end