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>2021-02-25 03:11:24 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-02-25 03:11:24 +0300
commitcffcf0772c5354d0d55fd4e32f724108a9582f15 (patch)
treeac827ac27f31b41f9e05d4ffe757be9f54aa6578 /doc/ci/metrics_reports.md
parent1631d8a2e0eef291f1d0b9486ee35ed6b52a176a (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/ci/metrics_reports.md')
-rw-r--r--doc/ci/metrics_reports.md10
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/ci/metrics_reports.md b/doc/ci/metrics_reports.md
index 3966e5e3e89..716959143ef 100644
--- a/doc/ci/metrics_reports.md
+++ b/doc/ci/metrics_reports.md
@@ -26,12 +26,14 @@ Consider the following examples of data that can use Metrics Reports:
## How it works
-Metrics are read from the metrics report (default: `metrics.txt`). They are parsed and displayed in the MR widget.
+Metrics for a branch are read from the latest metrics report artifact (default filename: `metrics.txt`) as string values.
-All values are considered strings and string compare is used to find differences between the latest available `metrics` artifact from:
+For an MR, the values of these metrics from the feature branch are compared to the values from the target branch. Then they are displayed in the MR widget in this order:
-- `master`
-- The feature branch
+- Metrics that have been added by the MR. Marked with a **New** badge.
+- Existing metrics with changed values.
+- Existing metrics with unchanged values.
+- Metrics that have been removed by the MR. Marked with a **Removed** badge.
## How to set it up