gitlab-org--gitlab-foss/lib/gitlab/usage/metrics/instrumentations/base_metric.rb

43 lines
951 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(metric_definition)
@time_frame = metric_definition.fetch(:time_frame)
@options = metric_definition.fetch(:options, {})
end
def instrumentation
value
end
def available?
self.class.available?
end
end
end
end
end
end