debian-mirror-gitlab/lib/gitlab/usage_data_counters/service_usage_data_counter.rb
2022-05-07 20:08:51 +05:30

8 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