Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Hegyi <ahegyi@gitlab.com>2019-08-14 19:12:12 +0300
committerBob Van Landuyt <bob@gitlab.com>2019-08-14 19:12:12 +0300
commitc5cb5da4ac4b414fb0d46412f80a686130a69e19 (patch)
treee8ab44f4cb0e0e265f756f93e267ce12041b8e8d /lib/gitlab/usage_data_counters
parent25f8e99a21ae1357403d1c2b96037b3cc80f254a (diff)
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.
Diffstat (limited to 'lib/gitlab/usage_data_counters')
-rw-r--r--lib/gitlab/usage_data_counters/cycle_analytics_counter.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/gitlab/usage_data_counters/cycle_analytics_counter.rb b/lib/gitlab/usage_data_counters/cycle_analytics_counter.rb
new file mode 100644
index 00000000000..1ff4296ef65
--- /dev/null
+++ b/lib/gitlab/usage_data_counters/cycle_analytics_counter.rb
@@ -0,0 +1,8 @@
+# frozen_string_literal: true
+
+module Gitlab::UsageDataCounters
+ class CycleAnalyticsCounter < BaseCounter
+ KNOWN_EVENTS = %w[views].freeze
+ PREFIX = 'cycle_analytics'
+ end
+end