mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-13 13:31:19 +00:00

This change adds a new counter 'cycle_analytics_views' to the usage data metrics to count the page views for cycle analytics show page.
9 lines
185 B
Ruby
9 lines
185 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab::UsageDataCounters
|
|
class CycleAnalyticsCounter < BaseCounter
|
|
KNOWN_EVENTS = %w[views].freeze
|
|
PREFIX = 'cycle_analytics'
|
|
end
|
|
end
|