gitlab-org--gitlab-foss/lib/gitlab/usage_data_counters/cycle_analytics_counter.rb
Adam Hegyi c5cb5da4ac Track page views for cycle analytics show page
This change adds a new counter 'cycle_analytics_views' to the usage data
metrics to count the page views for cycle analytics show page.
2019-08-14 16:12:12 +00:00

8 lines
185 B
Ruby

# frozen_string_literal: true
module Gitlab::UsageDataCounters
class CycleAnalyticsCounter < BaseCounter
KNOWN_EVENTS = %w[views].freeze
PREFIX = 'cycle_analytics'
end
end