summaryrefslogtreecommitdiff
path: root/lib/gitlab/usage/metrics/instrumentations/base_metric.rb
blob: 29b44f2bd0a3962a17a9525514c8fe8fe6729969 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module Gitlab
  module Usage
    module Metrics
      module Instrumentations
        class BaseMetric
          include Gitlab::Utils::UsageData

          attr_reader :time_frame

          def initialize(time_frame:)
            @time_frame = time_frame
          end
        end
      end
    end
  end
end