debian-mirror-gitlab/doc/user/project/insights/index.md

396 lines
11 KiB
Markdown
Raw Normal View History

2021-01-29 00:20:46 +05:30
---
stage: none
group: unassigned
2021-02-22 17:27:13 +05:30
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
2021-01-29 00:20:46 +05:30
---
2019-09-30 21:07:59 +05:30
# Insights **(ULTIMATE)**
2019-07-31 22:56:46 +05:30
2019-09-30 21:07:59 +05:30
> [Introduced](https://gitlab.com/groups/gitlab-org/-/epics/725) in [GitLab Ultimate](https://about.gitlab.com/pricing/) 12.0.
2019-07-31 22:56:46 +05:30
Configure the Insights that matter for your projects to explore data such as
triage hygiene, issues created/closed per a given period, average time for merge
requests to be merged and much more.
2019-09-04 21:01:54 +05:30
![Insights example bar chart](img/project_insights.png)
2019-07-31 22:56:46 +05:30
2021-02-22 17:27:13 +05:30
NOTE:
2019-09-04 21:01:54 +05:30
This feature is [also available at the group level](../../group/insights/index.md).
## View your project's Insights
2020-03-13 15:44:24 +05:30
You can access your project's Insights by clicking the **Analytics > Insights**
2021-06-08 01:23:25 +05:30
link in the left sidebar.
2019-07-31 22:56:46 +05:30
## Configure your Insights
Insights are configured using a YAML file called `.gitlab/insights.yml` within
2021-02-22 17:27:13 +05:30
a project. That file is used in the project's Insights page.
2019-07-31 22:56:46 +05:30
See [Writing your `.gitlab/insights.yml`](#writing-your-gitlabinsightsyml) below
for details about the content of this file.
2021-02-22 17:27:13 +05:30
NOTE:
After the configuration file is created, you can also
2019-09-04 21:01:54 +05:30
[use it for your project's group](../../group/insights/index.md#configure-your-insights).
2019-07-31 22:56:46 +05:30
2021-02-22 17:27:13 +05:30
NOTE:
If the project doesn't have any configuration file, it attempts to use
2019-07-31 22:56:46 +05:30
the group configuration if possible. If the group doesn't have any
2021-02-22 17:27:13 +05:30
configuration, the default configuration is used.
2019-07-31 22:56:46 +05:30
## Permissions
If you have access to view a project, then you have access to view their
Insights.
2021-02-22 17:27:13 +05:30
NOTE:
2019-07-31 22:56:46 +05:30
Issues or merge requests that you don't have access to (because you don't have
access to the project they belong to, or because they are confidential) are
filtered out of the Insights charts.
You may also consult the [group permissions table](../../permissions.md#group-members-permissions).
## Writing your `.gitlab/insights.yml`
The `.gitlab/insights.yml` file defines the structure and order of the Insights
2021-02-22 17:27:13 +05:30
charts displayed in each Insights page of your project or group.
2019-07-31 22:56:46 +05:30
Each page has a unique key and a collection of charts to fetch and display.
2021-02-22 17:27:13 +05:30
For example, here's a single definition for Insights that displays one page with one chart:
2019-07-31 22:56:46 +05:30
```yaml
bugsCharts:
2019-12-21 20:55:43 +05:30
title: "Charts for bugs"
2019-07-31 22:56:46 +05:30
charts:
2019-12-21 20:55:43 +05:30
- title: "Monthly bugs created"
2020-04-08 14:13:33 +05:30
description: "Open bugs created per month"
2019-07-31 22:56:46 +05:30
type: bar
query:
issuable_type: issue
issuable_state: opened
filter_labels:
- bug
group_by: month
period_limit: 24
```
Each chart definition is made up of a hash composed of key-value pairs.
For example, here's single chart definition:
```yaml
2019-12-21 20:55:43 +05:30
- title: "Monthly bugs created"
2020-04-08 14:13:33 +05:30
description: "Open bugs created per month"
2019-07-31 22:56:46 +05:30
type: bar
query:
issuable_type: issue
issuable_state: opened
filter_labels:
- bug
group_by: month
period_limit: 24
```
## Configuration parameters
A chart is defined as a list of parameters that define the chart's behavior.
The following table lists available parameters for charts:
| Keyword | Description |
|:---------------------------------------------------|:------------|
2021-02-22 17:27:13 +05:30
| [`title`](#title) | The title of the chart. This displays on the Insights page. |
| [`description`](#description) | A description for the individual chart. This displays above the relevant chart. |
2020-03-13 15:44:24 +05:30
| [`type`](#type) | The type of chart: `bar`, `line` or `stacked-bar`. |
2019-07-31 22:56:46 +05:30
| [`query`](#query) | A hash that defines the conditions for issues / merge requests to be part of the chart. |
## Parameter details
The following are detailed explanations for parameters used to configure
Insights charts.
### `title`
2021-02-22 17:27:13 +05:30
`title` is the title of the chart as it displays on the Insights page.
2019-07-31 22:56:46 +05:30
For example:
```yaml
monthlyBugsCreated:
2019-12-21 20:55:43 +05:30
title: "Monthly bugs created"
2019-07-31 22:56:46 +05:30
```
2020-04-08 14:13:33 +05:30
### `description`
The `description` text is displayed above the chart, but below the title. It's used
to give extra details regarding the chart, for example:
```yaml
monthlyBugsCreated:
title: "Monthly bugs created"
description: "Open bugs created per month"
```
2019-07-31 22:56:46 +05:30
### `type`
`type` is the chart type.
For example:
```yaml
monthlyBugsCreated:
2019-12-21 20:55:43 +05:30
title: "Monthly bugs created"
2019-07-31 22:56:46 +05:30
type: bar
```
Supported values are:
| Name | Example |
| ----- | ------- |
| `bar` | ![Insights example bar chart](img/insights_example_bar_chart.png) |
2022-01-26 12:08:38 +05:30
| `bar` (time series, that is when `group_by` is used) | ![Insights example bar time series chart](img/insights_example_bar_time_series_chart.png) |
2019-07-31 22:56:46 +05:30
| `line` | ![Insights example stacked bar chart](img/insights_example_line_chart.png) |
| `stacked-bar` | ![Insights example stacked bar chart](img/insights_example_stacked_bar_chart.png) |
### `query`
`query` allows to define the conditions for issues / merge requests to be part
of the chart.
Example:
```yaml
monthlyBugsCreated:
2019-12-21 20:55:43 +05:30
title: "Monthly bugs created"
2020-04-08 14:13:33 +05:30
description: "Open bugs created per month"
2019-07-31 22:56:46 +05:30
type: bar
query:
issuable_type: issue
issuable_state: opened
filter_labels:
- bug
collection_labels:
- S1
- S2
- S3
- S4
group_by: week
period_limit: 104
```
#### `query.issuable_type`
Defines the type of "issuable" you want to create a chart for.
Supported values are:
2021-02-22 17:27:13 +05:30
- `issue`: The chart displays issues' data.
- `merge_request`: The chart displays merge requests' data.
2019-07-31 22:56:46 +05:30
#### `query.issuable_state`
2021-04-29 21:17:54 +05:30
Filter by the current state of the queried "issuable".
2019-07-31 22:56:46 +05:30
2021-02-22 17:27:13 +05:30
By default, the `opened` state filter is applied.
2019-07-31 22:56:46 +05:30
Supported values are:
- `opened`: Open issues / merge requests.
- `closed`: Closed Open issues / merge requests.
- `locked`: Issues / merge requests that have their discussion locked.
- `merged`: Merged merge requests.
2019-09-04 21:01:54 +05:30
- `all`: Issues / merge requests in all states
2019-07-31 22:56:46 +05:30
#### `query.filter_labels`
2021-04-29 21:17:54 +05:30
Filter by labels currently applied to the queried "issuable".
2019-07-31 22:56:46 +05:30
2021-02-22 17:27:13 +05:30
By default, no labels filter is applied. All the defined labels must be
2021-04-29 21:17:54 +05:30
currently applied to the "issuable" in order for it to be selected.
2019-07-31 22:56:46 +05:30
Example:
```yaml
monthlyBugsCreated:
2019-12-21 20:55:43 +05:30
title: "Monthly regressions created"
2019-07-31 22:56:46 +05:30
type: bar
query:
issuable_type: issue
issuable_state: opened
filter_labels:
- bug
- regression
```
#### `query.collection_labels`
Group "issuable" by the configured labels.
2021-02-22 17:27:13 +05:30
By default, no grouping is done. When using this keyword, you need to
2019-07-31 22:56:46 +05:30
set `type` to either `line` or `stacked-bar`.
Example:
```yaml
weeklyBugsBySeverity:
2019-12-21 20:55:43 +05:30
title: "Weekly bugs by severity"
2019-07-31 22:56:46 +05:30
type: stacked-bar
query:
issuable_type: issue
issuable_state: opened
filter_labels:
- bug
collection_labels:
- S1
- S2
- S3
- S4
```
#### `query.group_by`
Define the X-axis of your chart.
Supported values are:
- `day`: Group data per day.
- `week`: Group data per week.
- `month`: Group data per month.
#### `query.period_limit`
2021-04-29 21:17:54 +05:30
Define how far "issuables" are queried in the past (using the `query.period_field`).
2019-07-31 22:56:46 +05:30
The unit is related to the `query.group_by` you defined. For instance if you
defined `query.group_by: 'day'` then `query.period_limit: 365` would mean
"Gather and display data for the last 365 days".
2021-02-22 17:27:13 +05:30
By default, default values are applied depending on the `query.group_by`
2019-07-31 22:56:46 +05:30
you defined.
| `query.group_by` | Default value |
| ---------------- | ------------- |
| `day` | 30 |
| `week` | 4 |
| `month` | 12 |
2020-07-28 23:09:34 +05:30
#### `query.period_field`
Define the timestamp field used to group "issuables".
Supported values are:
- `created_at` (default): Group data using the `created_at` field.
- `closed_at`: Group data using the `closed_at` field (for issues only).
- `merged_at`: Group data using the `merged_at` field (for merge requests only).
The `period_field` is automatically set to:
- `closed_at` if `query.issuable_state` is `closed`
- `merged_at` if `query.issuable_state` is `merged`
- `created_at` otherwise
2021-02-22 17:27:13 +05:30
NOTE:
Until [this bug](https://gitlab.com/gitlab-org/gitlab/-/issues/26911), is resolved,
you may see `created_at` in place of `merged_at`. `created_at` is used instead.
2020-07-28 23:09:34 +05:30
2019-12-21 20:55:43 +05:30
### `projects`
2020-06-23 00:09:42 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/10904) in [GitLab Ultimate](https://about.gitlab.com/pricing/) 12.4.
2019-12-21 20:55:43 +05:30
You can limit where the "issuables" can be queried from:
2021-04-29 21:17:54 +05:30
- If `.gitlab/insights.yml` is used for a [group's insights](../../group/insights/index.md#configure-your-insights), with `projects`, you can limit the projects to be queried. By default, all projects currently under the group are used.
2021-02-22 17:27:13 +05:30
- If `.gitlab/insights.yml` is used for a project's insights, specifying any other projects yields no results. By default, the project itself is used.
2019-12-21 20:55:43 +05:30
#### `projects.only`
The `projects.only` option specifies the projects which the "issuables"
should be queried from.
2021-02-22 17:27:13 +05:30
Projects listed here are ignored when:
2019-12-21 20:55:43 +05:30
- They don't exist.
- The current user doesn't have sufficient permissions to read them.
- They are outside of the group.
In the following `insights.yml` example, we specify the projects
2021-02-22 17:27:13 +05:30
the queries are used on. This example is useful when setting
2019-12-21 20:55:43 +05:30
a group's insights:
```yaml
monthlyBugsCreated:
title: "Monthly bugs created"
2020-04-08 14:13:33 +05:30
description: "Open bugs created per month"
2019-12-21 20:55:43 +05:30
type: bar
query:
issuable_type: issue
issuable_state: opened
filter_labels:
- bug
projects:
only:
- 3 # You can use the project ID
- groupA/projectA # Or full project path
- groupA/subgroupB/projectC # Projects in subgroups can be included
- groupB/project # Projects outside the group will be ignored
```
2019-07-31 22:56:46 +05:30
## Complete example
```yaml
2019-12-21 20:55:43 +05:30
.projectsOnly: &projectsOnly
projects:
only:
- 3
- groupA/projectA
- groupA/subgroupB/projectC
2019-07-31 22:56:46 +05:30
bugsCharts:
2019-12-21 20:55:43 +05:30
title: "Charts for bugs"
2019-07-31 22:56:46 +05:30
charts:
2019-12-21 20:55:43 +05:30
- title: "Monthly bugs created"
2020-04-08 14:13:33 +05:30
description: "Open bugs created per month"
2019-07-31 22:56:46 +05:30
type: bar
2019-12-21 20:55:43 +05:30
<<: *projectsOnly
2019-07-31 22:56:46 +05:30
query:
issuable_type: issue
issuable_state: opened
filter_labels:
- bug
group_by: month
period_limit: 24
2019-12-21 20:55:43 +05:30
- title: "Weekly bugs by severity"
2019-07-31 22:56:46 +05:30
type: stacked-bar
2019-12-21 20:55:43 +05:30
<<: *projectsOnly
2019-07-31 22:56:46 +05:30
query:
issuable_type: issue
issuable_state: opened
filter_labels:
- bug
collection_labels:
- S1
- S2
- S3
- S4
group_by: week
period_limit: 104
2019-12-21 20:55:43 +05:30
- title: "Monthly bugs by team"
2019-07-31 22:56:46 +05:30
type: line
2019-12-21 20:55:43 +05:30
<<: *projectsOnly
2019-07-31 22:56:46 +05:30
query:
issuable_type: merge_request
issuable_state: opened
filter_labels:
- bug
collection_labels:
- Manage
- Plan
- Create
group_by: month
period_limit: 24
```