summaryrefslogtreecommitdiff
path: root/lib/gitlab/usage/metrics/instrumentations/collected_data_categories_metric.rb
blob: dd1f9948815a792d05e0e6176a8cc5a05e0ed827 (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 CollectedDataCategoriesMetric < GenericMetric
          def value
            ::ServicePing::PermitDataCategoriesService.new.execute
          end
        end
      end
    end
  end
end