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