Welcome to mirror list, hosted at ThFree Co, Russian Federation.

service_usage_data_counter.rb « usage_data_counters « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aa1d9583ea5deaf45c5163c96f759affefa84bc4 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

module Gitlab::UsageDataCounters
  class ServiceUsageDataCounter < BaseCounter
    KNOWN_EVENTS = %w[download_payload_click].freeze
    PREFIX = 'service_usage_data'
  end
end