summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axilleas@axilleas.me>2016-10-03 19:05:33 +0200
committerAchilleas Pipinellis <axilleas@axilleas.me>2016-10-03 19:05:33 +0200
commit548b919c3d7432b37e69281c090df63d29b4177a (patch)
treee08758e4bf7d045b3c4e8213df3282796e1e4b0d
parentf9b267d1b4ddcabfd96fbe761b513067b88ce142 (diff)
downloadgitlab-ce-548b919c3d7432b37e69281c090df63d29b4177a.tar.gz
Clarify that the `production` environment is case-sensitive
Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/22533
-rw-r--r--doc/user/project/cycle_analytics.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/user/project/cycle_analytics.md b/doc/user/project/cycle_analytics.md
index 40dafb0fae3..eb9a0b8e2e3 100644
--- a/doc/user/project/cycle_analytics.md
+++ b/doc/user/project/cycle_analytics.md
@@ -65,7 +65,7 @@ Below you can see in more detail what the various stages of Cycle Analytics mean
| Code | Measures the median time between pushing a first commit (previous stage) and creating a merge request related to that commit. The key to keep the process tracked is to include the [issue closing pattern] to the description of the merge request (for example, `Closes #xxx`, where `xxx` is the number of the issue related to this merge request). If the issue closing pattern is not present in the merge request description, the MR is not considered to the measurement time of the stage. |
| Test | Measures the median time to run the entire pipeline for that project. It's related to the time GitLab CI takes to run every job for the commits pushed to that merge request defined in the previous stage. It is basically the start->finish time for all pipelines. `master` is not excluded. It does not attempt to track time for any particular stages. |
| Review | Measures the median time taken to review the merge request, between its creation and until it's merged. |
-| Staging | Measures the median time between merging the merge request until the very first deployment to production. It's tracked by the [environment] set to `production` in your GitLab CI configuration. If there isn't a `production` environment, this is not tracked. |
+| Staging | Measures the median time between merging the merge request until the very first deployment to production. It's tracked by the [environment] set to `production` (case-sensitive, `Production` won't work) in your GitLab CI configuration. If there isn't a `production` environment, this is not tracked. |
| Production| The sum of all time taken to run the entire process, from issue creation to deploying the code to production. |
---