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
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/api/bulk_imports.md28
-rw-r--r--doc/architecture/blueprints/cells/routing-service.md3
-rw-r--r--doc/user/analytics/value_streams_dashboard.md6
-rw-r--r--doc/user/markdown.md2
-rw-r--r--doc/user/project/integrations/gitlab_slack_application.md4
5 files changed, 38 insertions, 5 deletions
diff --git a/doc/api/bulk_imports.md b/doc/api/bulk_imports.md
index bebfdb80a35..6419c56ce34 100644
--- a/doc/api/bulk_imports.md
+++ b/doc/api/bulk_imports.md
@@ -152,7 +152,19 @@ curl --request GET --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab
"project_id": null,
"created_at": "2021-06-18T09:47:37.390Z",
"updated_at": "2021-06-18T09:47:51.867Z",
- "failures": []
+ "failures": [],
+ "stats": {
+ "labels": {
+ "source": 10,
+ "fetched": 10,
+ "imported": 10
+ },
+ "milestones": {
+ "source": 10,
+ "fetched": 10,
+ "imported": 10
+ }
+ }
},
{
"id": 2,
@@ -233,7 +245,19 @@ curl --request GET --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab
"status": "finished",
"source_type": "gitlab",
"created_at": "2021-06-18T09:45:55.358Z",
- "updated_at": "2021-06-18T09:46:27.003Z"
+ "updated_at": "2021-06-18T09:46:27.003Z",
+ "stats": {
+ "labels": {
+ "source": 10,
+ "fetched": 10,
+ "imported": 10
+ },
+ "milestones": {
+ "source": 10,
+ "fetched": 10,
+ "imported": 10
+ }
+ }
}
]
```
diff --git a/doc/architecture/blueprints/cells/routing-service.md b/doc/architecture/blueprints/cells/routing-service.md
index bd5570b68f4..f7c0ce3456a 100644
--- a/doc/architecture/blueprints/cells/routing-service.md
+++ b/doc/architecture/blueprints/cells/routing-service.md
@@ -2,6 +2,7 @@
stage: core platform
group: Tenant Scale
description: 'Cells: Routing Service'
+status: accepted
---
# Cells: Routing Service
@@ -398,7 +399,7 @@ For the above example:
{
"metadata": {
"rule_id": "c9scvaiwj51a75kzoh917uwtnw8z4ebl",
- "headers": {
+ "headers": {
"all_request_headers": "value"
},
"method": "GET",
diff --git a/doc/user/analytics/value_streams_dashboard.md b/doc/user/analytics/value_streams_dashboard.md
index c093fdf8cb3..955431e858c 100644
--- a/doc/user/analytics/value_streams_dashboard.md
+++ b/doc/user/analytics/value_streams_dashboard.md
@@ -35,6 +35,8 @@ The Value Streams Dashboard panels has a default configuration, but you can also
### DevSecOps metrics comparison panel
+> Contributor count metric [added](https://gitlab.com/gitlab-org/gitlab/-/issues/433353) in GitLab 16.9.
+
The DevSecOps metrics comparison displays DORA4, vulnerability, and flow metrics for a group or project in the
month-to-date, last month, the month before, and the past 180 days.
@@ -48,6 +50,9 @@ that are the largest value contributors, overperforming, or underperforming.
You can also drill down the metrics for further analysis.
When you hover over a metric, a tooltip displays an explanation of the metric and a link to the related documentation page.
+NOTE:
+The contributor count metric is available only on GitLab.com at the group-level. To view this metric in the comparison panel, you must [set up ClickHouse](../../integration/clickhouse.md), and enable the [feature flags](../../administration/feature_flags.md) `clickhouse_data_collection` and `event_sync_worker_for_click_house`.
+
### DORA Performers score panel
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/386843) in GitLab 16.2 [with a flag](../../administration/feature_flags.md) named `dora_performers_score_panel`. Disabled by default.
@@ -242,6 +247,7 @@ If the comparison panel from the configuration file is enabled with `filter_labe
| Issues closed | Number of issues closed by month. | [Value Stream Analytics](https://gitlab.com/groups/gitlab-org/-/analytics/value_stream_analytics) | [Value Stream Analytics](../group/value_stream_analytics/index.md) | `issues_completed` |
| Number of deploys | Total number of deploys to production. | [Merge Request Analytics](https://gitlab.com/gitlab-org/gitlab/-/analytics/merge_request_analytics) | [Merge request analytics](merge_request_analytics.md) | `deploys` |
| Merge request throughput | The number of merge requests merged by month. | [Groups Productivity analytics](productivity_analytics.md), [Projects Merge Request Analytics](https://gitlab.com/gitlab-org/gitlab/-/analytics/merge_request_analytics) | [Groups Productivity analytics](productivity_analytics.md) [Projects Merge request analytics](merge_request_analytics.md) | `merge_request_throughput` |
+| Contributor count | Number of monthly unique users with contributions in the group.| [Contribution Analytics](https://gitlab.com/groups/gitlab-org/-/contribution_analytics) | [User contribution events](../profile/contributions_calendar.md#user-contribution-events) | `contributor_count` |
| Critical vulnerabilities over time | Critical vulnerabilities over time in project or group | [Vulnerability report](https://gitlab.com/gitlab-org/gitlab/-/security/vulnerability_report) | [Vulnerability report](../application_security/vulnerability_report/index.md) | `vulnerability_critical` |
| High vulnerabilities over time | High vulnerabilities over time in project or group | [Vulnerability report](https://gitlab.com/gitlab-org/gitlab/-/security/vulnerability_report) | [Vulnerability report](../application_security/vulnerability_report/index.md) | `vulnerability_high` |
diff --git a/doc/user/markdown.md b/doc/user/markdown.md
index d5ca098c8c5..57fe4e8c277 100644
--- a/doc/user/markdown.md
+++ b/doc/user/markdown.md
@@ -1047,6 +1047,8 @@ the note content.
Regardless of the tag names, the relative order of the reference tags determines the rendered
numbering.
+Regardless where you put the note, it's always shown at the bottom of the file.
+
<!--
The following codeblock uses HTML to skip the Vale ReferenceLinks test.
Do not change it back to a markdown codeblock.
diff --git a/doc/user/project/integrations/gitlab_slack_application.md b/doc/user/project/integrations/gitlab_slack_application.md
index 79df07d5eb9..6b80edd1a05 100644
--- a/doc/user/project/integrations/gitlab_slack_application.md
+++ b/doc/user/project/integrations/gitlab_slack_application.md
@@ -78,7 +78,7 @@ If you use [Slack slash commands](slack_slash_commands.md) or
- Replace `/gitlab` with the trigger name you've configured for these integrations.
- Remove `<project>`.
-The following slash commands are available in GitLab:
+The following slash commands are available for GitLab:
| Command | Description |
| ------- | ----------- |
@@ -157,7 +157,7 @@ To receive notifications to a private Slack channel, you must add the GitLab for
### Notification events
-The following GitLab events are available for Slack notifications:
+The following GitLab events can trigger notifications in Slack:
| Event | Description |
|----------------------------------------------------------------------|---------------------------------------------------------------|