https://github.com/larscom/gitlab-ci-dashboard
Gitlab CI Dashboard will provide you a global overview of all pipelines, schedules and their status within a single group
https://github.com/larscom/gitlab-ci-dashboard
actix-web api dashboard docker gitlab gitlab-api gitlab-ci gitlab-pipelines gitlab-runner monitor monitoring pipelines rust rust-lang schedules self-hosted tokio-rs
Last synced: 8 months ago
JSON representation
Gitlab CI Dashboard will provide you a global overview of all pipelines, schedules and their status within a single group
- Host: GitHub
- URL: https://github.com/larscom/gitlab-ci-dashboard
- Owner: larscom
- License: mit
- Created: 2022-11-30T20:35:39.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-07-26T21:40:06.000Z (8 months ago)
- Last Synced: 2025-07-27T01:22:05.870Z (8 months ago)
- Topics: actix-web, api, dashboard, docker, gitlab, gitlab-api, gitlab-ci, gitlab-pipelines, gitlab-runner, monitor, monitoring, pipelines, rust, rust-lang, schedules, self-hosted, tokio-rs
- Language: Rust
- Homepage: https://gitlab-ci-dashboard.larscom.nl
- Size: 3.15 MB
- Stars: 52
- Watchers: 5
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gitlab CI Dashboard
[](https://hub.docker.com/r/larscom/gitlab-ci-dashboard)
[](https://github.com/larscom/gitlab-ci-dashboard/actions/workflows/workflow.yml)
[](https://opensource.org/licenses/MIT)

Gitlab CI Dashboard will provide you with a **global** overview of all pipelines, schedules, and their statuses within a
single group.
The default functionality of Gitlab is limited at the project level. This can become hard to manage when you have a lot
of
projects, potentially resulting in undetected failed pipelines.
## 👉 [Demo (main branch)](https://gitlab-ci-dashboard.larscom.nl)
## 🚀 Highlights
- View all pipeline statuses per group (e.g: failed/canceled/success)
- View all pipeline schedules per group
- You won't get rate limited by the Gitlab API, due to server-side caching
- Communication to the Gitlab API happens only server side
- Only 1 `read only` token is needed to serve a whole team
- Optionally use a `read/write` token to perform actions like restarting failed pipelines, create new pipelines or
cancel pipelines.
## ✅ Features (DONE)
- [x] Overview of all latest pipeline statuses within a group
- [x] Overview of all pipeline statuses within a group
- [x] Overview of all schedules within a group
- [x] Navigate to Gitlab
- [x] Shows jobs and their status per pipeline
- [x] Download artifacts from jobs directly
- [x] Search for projects within a group
- [x] Filter pipelines by status and projects by topic
- [x] Add projects to favorites
- [x] Start a new pipeline (requires read/write API token)
- [x] Restart failed pipelines (requires read/write API token)
- [x] Cancel pipelines (requires read/write API token)
## 📒 Features (PLANNED)
- [ ] Overview of all registries (container/package) within a group
- [ ] ... suggestions are welcome
## ⚡️ Requirements
- Gitlab server (v4 API)
- API token (read only or read/write)
- Docker
## 💡 Getting started
1. Generate a `read_api` or `api` access token in Gitlab, depending on your requirements (
e.g: https://gitlab.com/-/profile/personal_access_tokens)

2. Run docker with the required environment variables (GITLAB_BASE_URL, GITLAB_API_TOKEN)
```bash
docker run -p 8080:8080 -e GITLAB_BASE_URL=https://gitlab.com -e GITLAB_API_TOKEN=my_token larscom/gitlab-ci-dashboard:latest
```
Or you can run it with a TOML configration file
```bash
docker run -p 8080:8080 -v $(pwd)/config.toml:/app/config.toml larscom/gitlab-ci-dashboard:latest
```
3. Dashboard should be available at: http://localhost:8080/ showing (by default) all available groups and their
projects
## 👉 Create/Cancel/Retry Pipelines
You are able to perform write operations like creating,canceling,retrying pipelines, but you need to set the environment
variable: `API_READ_ONLY` to `false` and provide a valid `read/write` access token.
## 👉 Hide the 'write' operations button
You are able to hide the ellipsis (...) when you just want to use `READ_ONLY` mode. Set the `UI_HIDE_WRITE_ACTIONS` to
true.
## ⏰ Prometheus
Prometheus metrics are exposed on the following endpoint
> http://localhost:8080/metrics/prometheus
## 🔌 Configration
You have the option to set the configuration via environment variables or a TOML file.
A TOML file takes precedence over environment variables, except for the `RUST_LOG` variable.
### Load from TOML file
> An example TOML file can be found inside the `./api` folder.
Mount the `config.toml` inside the container.
```bash
docker run -p 8080:8080 -v $(pwd)/config.toml:/app/config.toml larscom/gitlab-ci-dashboard:latest
```
### Environment variables
| Variable | Type | Description | Required | Default |
|-----------------------------------|--------|------------------------------------------------------------------------------------------------------------------------------------|----------|--------------|
| GITLAB_BASE_URL | string | The base url to the Gitlab server (e.g: https://gitlab.com) | yes | |
| GITLAB_API_TOKEN | string | A readonly or read/write access token generated in Gitlab (see: https://gitlab.com/-/profile/personal_access_tokens) | yes | |
| GITLAB_GROUP_ONLY_IDS | string | Provide a comma seperated string of group ids which will only be displayed (e.g: 123,789,888) | no | |
| GITLAB_GROUP_SKIP_IDS | string | Provide a comma seperated string of group ids which will be ignored (e.g: 123,789,888) | no | |
| GITLAB_GROUP_ONLY_TOP_LEVEL | bool | Show only top level groups, projects in sub groups will be shown inside the top level groups (see: GITLAB_GROUP_INCLUDE_SUBGROUPS) | no | true |
| GITLAB_GROUP_INCLUDE_SUBGROUPS | bool | Whether to include subgroup projects whenever projects are fetched for a specific group | no | true |
| GITLAB_GROUP_CACHE_TTL_SECONDS | int | Expire after write time in seconds for groups (cache) | no | 300 |
| GITLAB_PROJECT_SKIP_IDS | string | Provide a comma seperated string of project ids which will be ignored (e.g: 123,789,888) | no | |
| GITLAB_PROJECT_CACHE_TTL_SECONDS | int | Expire after write time in seconds for projects (cache) | no | 300 |
| GITLAB_PIPELINE_CACHE_TTL_SECONDS | int | Expire after write time in seconds for pipelines (cache) | no | 5 |
| GITLAB_PIPELINE_HISTORY_DAYS | int | How far back in time (days), it should fetch pipelines from gitlab (pipelines tab only) | no | 5 |
| GITLAB_BRANCH_CACHE_TTL_SECONDS | int | Expire after write time in seconds for branches (cache) | no | 60 |
| GITLAB_SCHEDULE_CACHE_TTL_SECONDS | int | Expire after write time in seconds for schedules (cache) | no | 300 |
| GITLAB_JOB_CACHE_TTL_SECONDS | int | Expire after write time in seconds for jobs (cache) | no | 5 |
| GITLAB_ARTIFACT_CACHE_TTL_SECONDS | int | Expire after write time in seconds for artifacts (cache) | no | 1800 |
| API_READ_ONLY | bool | If true, you are not able to perform 'write' operations like retrying a pipeline | no | true |
| UI_HIDE_WRITE_ACTIONS | bool | If true, the ellipsis action button (...) is hidden, handy if you want to use this application in read-only mode | no | false |
| SERVER_LISTEN_IP | string | The IP address where the web server should listen on | no | 0.0.0.0 |
| SERVER_LISTEN_PORT | int | The port where the web server should listen on | no | 8080 |
| SERVER_WORKER_COUNT | int | The amount of worker threads the web server should have | no | CPU specific |
| RUST_LOG | string | The log level of the application, set to "debug" to enable debug logging | no | info |