From 716cfa9888166b030bd2034ccbb55b1dc1c1f8b1 Mon Sep 17 00:00:00 2001 From: Max Woolf <max@woolf.io> Date: Wed, 25 Sep 2024 15:30:14 +0100 Subject: [PATCH] Place Product Analytics admin settings behind flag Since being deprioritised, we'll move self-managed settings for new PA installs behind a default-off feature flag. This won't affect the .com installation, but will make it clear to self-managed instances that we don't currently support it. EE: true Changelog: removed --- doc/user/product_analytics/index.md | 7 +++++++ .../ee/admin/application_settings_controller.rb | 3 ++- .../beta/product_analytics_admin_settings.yml | 9 +++++++++ .../ee/sidebars/admin/menus/admin_settings_menu.rb | 3 ++- .../admin/application_settings_controller_spec.rb | 12 ++++++++++++ 5 files changed, 32 insertions(+), 2 deletions(-) create mode 100644 ee/config/feature_flags/beta/product_analytics_admin_settings.yml diff --git a/doc/user/product_analytics/index.md b/doc/user/product_analytics/index.md index f7190ba28d15..1b9d20075c09 100644 --- a/doc/user/product_analytics/index.md +++ b/doc/user/product_analytics/index.md @@ -9,6 +9,7 @@ info: To determine the technical writer assigned to the Stage/Group associated w DETAILS: **Tier:** Ultimate **Offering:** GitLab.com, Self-managed, GitLab Dedicated +**Status:** Beta > - Introduced in GitLab 15.4 as an [experiment](../../policy/experiment-beta-support.md#experiment) feature [with a flag](../../administration/feature_flags.md) named `cube_api_proxy`. Disabled by default. > - `cube_api_proxy` changed to reference only the [product analytics API](../../api/product_analytics.md) in GitLab 15.6. @@ -21,6 +22,12 @@ DETAILS: > - `product_analytics_dashboards` [enabled](https://gitlab.com/gitlab-org/gitlab/-/issues/398653) by default in GitLab 16.11. > - [Enabled on self-managed and GitLab Dedicated](https://gitlab.com/gitlab-org/gitlab/-/issues/444345) in GitLab 16.11. > - Feature flag `product_analytics_dashboards` [removed](https://gitlab.com/gitlab-org/gitlab/-/issues/454059) in GitLab 17.1. +> - [Changed](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/167192) to beta and feature flag `product_analytics_admin_settings` added in GitLab 17.5. + +FLAG: +The availability of this feature is controlled by a feature flag. +For more information, see the history. +This feature is not ready for production use. The product analytics feature empowers you to track user behavior and gain insights into how your applications are used and how users interact with your product. diff --git a/ee/app/controllers/ee/admin/application_settings_controller.rb b/ee/app/controllers/ee/admin/application_settings_controller.rb index fdcbb803a574..b8e7b2fc48a2 100644 --- a/ee/app/controllers/ee/admin/application_settings_controller.rb +++ b/ee/app/controllers/ee/admin/application_settings_controller.rb @@ -213,7 +213,8 @@ def seat_link_payload end def analytics - not_found unless ::License.feature_available?(:product_analytics) + not_found if !::License.feature_available?(:product_analytics) || + ::Feature.disabled?(:product_analytics_admin_settings, :instance) end def push_disable_private_profiles_feature diff --git a/ee/config/feature_flags/beta/product_analytics_admin_settings.yml b/ee/config/feature_flags/beta/product_analytics_admin_settings.yml new file mode 100644 index 000000000000..62a510ce4c4a --- /dev/null +++ b/ee/config/feature_flags/beta/product_analytics_admin_settings.yml @@ -0,0 +1,9 @@ +--- +name: product_analytics_admin_settings +feature_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/493870 +introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/167192 +rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/494428 +milestone: '17.5' +group: group::platform insights +type: beta +default_enabled: false diff --git a/ee/lib/ee/sidebars/admin/menus/admin_settings_menu.rb b/ee/lib/ee/sidebars/admin/menus/admin_settings_menu.rb index a8e8447fe0e2..fd926bf996ca 100644 --- a/ee/lib/ee/sidebars/admin/menus/admin_settings_menu.rb +++ b/ee/lib/ee/sidebars/admin/menus/admin_settings_menu.rb @@ -81,7 +81,8 @@ def security_and_compliance_menu_item end def analytics_menu_item - unless ::License.feature_available?(:product_analytics) + unless ::License.feature_available?(:product_analytics) && + ::Feature.enabled?(:product_analytics_admin_settings, :instance) return ::Sidebars::NilMenuItem.new(item_id: :admin_analytics) end diff --git a/ee/spec/controllers/admin/application_settings_controller_spec.rb b/ee/spec/controllers/admin/application_settings_controller_spec.rb index e9caa8142f68..ec426f315caa 100644 --- a/ee/spec/controllers/admin/application_settings_controller_spec.rb +++ b/ee/spec/controllers/admin/application_settings_controller_spec.rb @@ -667,6 +667,18 @@ end end + context 'when flag is disabled' do + before do + stub_feature_flags(product_analytics_admin_settings: false) + end + + it 'returns not found' do + get :analytics + + expect(response).to have_gitlab_http_status(:not_found) + end + end + context 'when not licensed' do before do stub_licensed_features(product_analytics: false) -- GitLab