diff --git a/app/controllers/dashboard/todos_controller.rb b/app/controllers/dashboard/todos_controller.rb index fbb368dbcd86486129a85bca2648aafe5f11492f..f1fc15c7603f28feaa699d0a28c5b3e2e373960b 100644 --- a/app/controllers/dashboard/todos_controller.rb +++ b/app/controllers/dashboard/todos_controller.rb @@ -1,10 +1,17 @@ # frozen_string_literal: true class Dashboard::TodosController < Dashboard::ApplicationController + include Gitlab::InternalEventsTracking + feature_category :notifications urgency :low def index + track_internal_event( + 'view_todo_list', + user: current_user + ) + push_frontend_feature_flag(:todos_bulk_actions, current_user) end diff --git a/config/events/view_todo_list.yml b/config/events/view_todo_list.yml new file mode 100644 index 0000000000000000000000000000000000000000..3655b3bcb886ef8bf172ff7b39359a083b503018 --- /dev/null +++ b/config/events/view_todo_list.yml @@ -0,0 +1,15 @@ +--- +description: User views the To-Do List +internal_events: true +action: view_todo_list +identifiers: +- user +product_group: personal_productivity +product_categories: +- notifications +milestone: '17.10' +introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/182178 +tiers: +- free +- premium +- ultimate diff --git a/config/metrics/counts_all/count_distinct_user_id_from_view_todo_list.yml b/config/metrics/counts_all/count_distinct_user_id_from_view_todo_list.yml new file mode 100644 index 0000000000000000000000000000000000000000..61b0c9c32bc253d2d31f515b9b118d7f9e7c5110 --- /dev/null +++ b/config/metrics/counts_all/count_distinct_user_id_from_view_todo_list.yml @@ -0,0 +1,23 @@ +--- +key_path: redis_hll_counters.count_distinct_user_id_from_view_todo_list +description: Count of unique users that viewed the To-Do List +product_group: personal_productivity +product_categories: +- notifications +performance_indicator_type: [] +value_type: number +status: active +milestone: '17.10' +introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/182178 +time_frame: +- 28d +- 7d +data_source: internal_events +data_category: optional +tiers: +- free +- premium +- ultimate +events: +- name: view_todo_list + unique: user.id diff --git a/spec/controllers/dashboard/todos_controller_spec.rb b/spec/controllers/dashboard/todos_controller_spec.rb index 9f7addad7a5f093301cc6fe5b27b8abc96348462..faccbe023695b40b9e0cdb78f691a3e34eb49ae1 100644 --- a/spec/controllers/dashboard/todos_controller_spec.rb +++ b/spec/controllers/dashboard/todos_controller_spec.rb @@ -21,5 +21,13 @@ it_behaves_like 'disabled when using an external authorization service' end + + it_behaves_like 'internal event tracking' do + subject { get :index } + + let(:event) { 'view_todo_list' } + let(:category) { described_class.name } + let(:user) { create(:user) } + end end end