summaryrefslogtreecommitdiff
path: root/spec/fixtures/lib/generators/gitlab/usage_metric_generator/sample_generic_metric.rb
blob: df6152a565994d6cf1e5532f602f9c72a4dd42d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Gitlab
  module Usage
    module Metrics
      module Instrumentations
        class CountFooMetric < GenericMetric
          value do
            # Insert metric code logic here
          end
        end
      end
    end
  end
end