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:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-10-24 06:06:21 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2019-10-24 06:06:21 +0300
commit24ed154fa81265f47bcfbecfcb331f82a5faad0d (patch)
treebeeaf143e3764390094e2f8cd09adef15809208d /doc/user/analytics
parentc77dd0995c19bd0d3a4203192f0710623e8f93be (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/user/analytics')
-rw-r--r--doc/user/analytics/productivity_analytics.md28
1 files changed, 27 insertions, 1 deletions
diff --git a/doc/user/analytics/productivity_analytics.md b/doc/user/analytics/productivity_analytics.md
index 09f83dcff4b..aecbac15c98 100644
--- a/doc/user/analytics/productivity_analytics.md
+++ b/doc/user/analytics/productivity_analytics.md
@@ -1,6 +1,6 @@
# Productivity Analytics **(PREMIUM)**
-> [Introduced](https://gitlab.com/gitlab-org/gitlab/issues/12079) in [GitLab Premium](https://about.gitlab.com/pricing/) 12.3 (enabled by default using the feature flags `productivity_analytics`, `productivity_analytics_scatterplot_enabled`).
+> [Introduced](https://gitlab.com/gitlab-org/gitlab/issues/12079) in [GitLab Premium](https://about.gitlab.com/pricing/) 12.3.
Track development velocity with Productivity Analytics.
@@ -52,3 +52,29 @@ The **Productivity Analytics** dashboard can be accessed only:
- On [Premium or Silver tier](https://about.gitlab.com/pricing/) and above.
- By users with [Reporter access](../permissions.md) and above.
+
+## Enabling and disabling using feature flags
+
+Productivity Analytics is:
+
+- [Enabled by default](https://gitlab.com/gitlab-org/gitlab/merge_requests/18754) from GitLab 12.4,
+ but can be disabled using the following feature flags:
+ - `productivity_analytics`.
+ - `productivity_analytics_scatterplot_enabled`.
+- Disabled by default in GitLab 12.3, but can be enabled using the following feature flag:
+ - `productivity_analytics`.
+
+A GitLab administrator can:
+
+- Disable this feature from GitLab 12.4 by running the follow in a Rails console:
+
+ ```ruby
+ Feature.disable(:productivity_analytics)
+ Feature.disable(:productivity_analytics_scatterplot_enabled)
+ ```
+
+- Enable this feature in GitLab 12.3 by running the following in a Rails console:
+
+ ```ruby
+ Feature.enable(:productivity_analytics)
+ ```