gitlab-org--gitlab-foss/lib/gitlab/usage_data_counters/service_usage_data_counter.rb

9 lines
207 B
Ruby

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