| Metric Name | Description |
|---|---|
| Pull Request Count | Number of Pull/Merge Requests |
| Pull Request Pass Rate | Ratio of Pull/Merge Review requests to merged |
| Pull Request Reviewer Count | Number of Pull/Merge Reviewers |
| Pull Request Review Time | Time from Pull/Merge created time until merged |
| Commit Author Count | Number of Contributors |
| Commit Count | Number of Commits |
| Added Lines | Accumulated Number of New Lines |
| Deleted Lines | Accumulated Number of Removed Lines |
| Pull Request Review Rounds | Number of cycles of commits followed by comments/final merge |
The connection aspect of the configuration screen requires the following key fields to connect to the GitLab API. As GitLab is a single-source data provider at the moment, the connection name is read-only as there is only one instance to manage. As we continue our development roadmap we may enable multi-source connections for GitLab in the future.
- Connection Name [
READONLY]⚠️ Defaults to "Gitlab" and may not be changed.
- Endpoint URL (REST URL, starts with
https://orhttp://)- This should be a valid REST API Endpoint eg.
https://gitlab.example.com/api/v4/ ⚠️ URL should end with/
- This should be a valid REST API Endpoint eg.
- Personal Access Token (HTTP Basic Auth)
-
Login to your Gitlab Account and create a Personal Access Token to authenticate with the API using HTTP Basic Authentication.. The token must be 20 characters long. Save the personal access token somewhere safe. After you leave the page, you no longer have access to the token.
- In the top-right corner, select your avatar.
- Select Edit profile.
- On the left sidebar, select Access Tokens.
- Enter a name and optional expiry date for the token.
- Select the desired scopes.
- Select Create personal access token.
-
For help on Creating a personal access token, please see official GitLab Docs on Personal Tokens
For an overview of the GitLab REST API, please see official GitLab Docs on REST
Click Save Connection to update connection settings.
Manage additional settings and options for the GitLab Datasource Provider. Currently there is only one optional setting that allows you to Map multiple JIRA Boards to GitLab Projects.
- JIRA Board Mappings [
Optional] Map JIRA Boards to GitLab. Type comma separated mappings using the format[JIRA_BOARD_ID]:[GITLAB_PROJECT_ID]
# Map JIRA Board ID 8 ==> Gitlab Projects 8967944,8967945
<JIRA_BOARD>:<GITLAB_PROJECT_ID>,...; eg. 8:8967944,8967945;9:8967946,8967947
Click Save Settings to update additional settings.
To collect data, you can make a POST request to /pipelines
curl --location --request POST 'localhost:8080/pipelines' \
--header 'Content-Type: application/json' \
--data-raw '
{
"name": "gitlab 20211126",
"tasks": [[{
"plugin": "gitlab",
"options": {
"projectId": <Your gitlab project id>
}
}]]
}
'
To get the project id for a specific Gitlab repository:
Use this project id in your requests, to collect data from this project

