c5cb5da4ac
This change adds a new counter 'cycle_analytics_views' to the usage data metrics to count the page views for cycle analytics show page.
8 lines
185 B
Ruby
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
|