All Projects → globocom → Gitlab Ci Monitor

globocom / Gitlab Ci Monitor

Licence: mit
A simple dashboard for monitoring GitLab CI builds. Alpha version.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Gitlab Ci Monitor

Gitlab Ci Pipeline Php
☕️ Docker images for test PHP applications with Gitlab CI (or any other CI platform!)
Stars: ✭ 451 (+196.71%)
Mutual labels:  continuous-integration, continuous-delivery, gitlab-ci, gitlab
Cimonitor
Displays CI statuses on a dashboard and triggers fun modules representing the status!
Stars: ✭ 34 (-77.63%)
Mutual labels:  monitoring, continuous-integration, gitlab, dashboard
Devops Readme.md
What to Read to Learn More About DevOps
Stars: ✭ 398 (+161.84%)
Mutual labels:  monitoring, continuous-integration, continuous-delivery
Cml
♾️ CML - Continuous Machine Learning | CI/CD for ML
Stars: ✭ 2,843 (+1770.39%)
Mutual labels:  gitlab-ci, continuous-integration, continuous-delivery
Hands On Devops
A hands-on DevOps course covering the culture, methods and repeated practices of modern software development involving Packer, Vagrant, VirtualBox, Ansible, Kubernetes, K3s, MetalLB, Traefik, Docker-Compose, Docker, Taiga, GitLab, Drone CI, SonarQube, Selenium, InSpec, Alpine 3.10, Ubuntu-bionic, CentOS 7...
Stars: ✭ 196 (+28.95%)
Mutual labels:  continuous-integration, continuous-delivery, gitlab
Agola
Agola: CI/CD Redefined
Stars: ✭ 783 (+415.13%)
Mutual labels:  continuous-integration, continuous-delivery, gitlab
Hygieia
CapitalOne DevOps Dashboard
Stars: ✭ 3,682 (+2322.37%)
Mutual labels:  continuous-integration, continuous-delivery, dashboard
Git Push Deploy
Simple Automated CI/CD Pipeline for GitHub and GitLab Projects
Stars: ✭ 21 (-86.18%)
Mutual labels:  continuous-integration, continuous-delivery, gitlab-ci
Gitlab Ci Dashboard
📊 Dashboard for monitoring GitLab CI builds and pipelines for TV
Stars: ✭ 79 (-48.03%)
Mutual labels:  gitlab-ci, gitlab, dashboard
Pandoc Action Example
using the pandoc document converter on GitHub Actions
Stars: ✭ 131 (-13.82%)
Mutual labels:  continuous-integration, continuous-delivery
Sshdeploy
A command-line tool that enables quick build and run deployments over SSH.
Stars: ✭ 131 (-13.82%)
Mutual labels:  continuous-integration, continuous-delivery
Build
Netlify Build runs the build command, Build Plugins and bundles Netlify Functions.
Stars: ✭ 135 (-11.18%)
Mutual labels:  continuous-integration, continuous-delivery
Bbrun
Run Bitbucket Pipelines locally
Stars: ✭ 127 (-16.45%)
Mutual labels:  continuous-integration, continuous-delivery
Gitlab Watchman
Monitoring GitLab for sensitive data shared publicly
Stars: ✭ 127 (-16.45%)
Mutual labels:  monitoring, gitlab
Gitlab Ci Local
Tired of pushing to test your .gitlab-ci.yml?
Stars: ✭ 134 (-11.84%)
Mutual labels:  gitlab-ci, gitlab
Delivery Pipeline Plugin
Jenkins plugin for pipeline visualisation, perfect for Continuous Delivery
Stars: ✭ 122 (-19.74%)
Mutual labels:  continuous-integration, continuous-delivery
Monitaure
🔔 A server uptime monitoring progressive web application - NO LONGER MAINTAINED
Stars: ✭ 135 (-11.18%)
Mutual labels:  monitoring, dashboard
Angular5 Iot Dashboard
Multipurpose dashboard admin for IoT softwares, remote control, user interface. Develop your client dashboards in Angular 5 with vast variety of components available.
Stars: ✭ 148 (-2.63%)
Mutual labels:  monitoring, dashboard
Book Cicd Docker Kubernetes
A book on CI/CD with Docker, Kubernetes and Semaphore
Stars: ✭ 122 (-19.74%)
Mutual labels:  continuous-integration, continuous-delivery
Kubebox
⎈❏ Terminal and Web console for Kubernetes
Stars: ✭ 1,855 (+1120.39%)
Mutual labels:  monitoring, dashboard

GitLab CI Monitor

A simple dashboard for monitoring GitLab CI builds. Alpha version.

Gitlab Support: 9.0 (API V4)

Example

Usage

This project runs completely in the browser. It expects a few parameters in the query string:

  • gitlab: your gitlab server address (not needed if you deployed the monitor on the gitlab instance)
  • token: your gitlab token (if you deployed the monitor on the gitlab instance you may set this to use_cookie)
  • projects: a comma separated list of projects in the form GROUP_NAME/PROJECT_NAME/BRANCH_NAME you want to monitor.
  • groups: a comma separated list of groups or subgroups
  • order: a comma separated list of fields to order projects, optionally followed by .asc or .desc modifier

At least one of groups or projects need to be set.

Example:

http://gitlab-ci-monitor.example.com/?gitlab=gitlab.example.com&token=12345&projects=namespace/project1/master,namespace/project1/branch1,namespace/project2/master&order=status.desc,project,author.asc

With these parameters, it will try to fetch the list of projects that this token has access. Then, it will filter the list by the projects parameter and show only the ones that have builds (i.e., that have GitLab CI enabled).

If you set groups it will show the status of the default branch of those projects in the group, which are active and have jobs enabled.

Example:

https://gitlab.example.com/?token=use_cookie&groups=group1,base/group2,group3

This requires installation on the gitlab server. With these parameters you see the pipeline state of the default branch of all projects in groups group1, base/group2 and group3.

  • The project name in title of a box links to the project, the branch name to the tree view of the branch.
  • The commit hash on the lower left links to the tree view of the commit.
  • The commit title links to the pipeline overview.
  • Hovering over the time on the lower right will give you the exact date.

Installation on a GitLab instance

  • Download and unpack to a directory of your choice:
rm -rf /usr/local/share/gitlab/monitor
mkdir -p /usr/local/share/gitlab/monitor
curl -s -L https://github.com/globocom/gitlab-ci-monitor/archive/master.tar.gz | tar xz -C /usr/local/share/gitlab/monitor --strip-components=1

or

make install
  • Now insert the following to your /etc/gitlab/gitlab.rb (the entry already exists but it commented):
nginx['custom_gitlab_server_config'] = <<-NGINX_CONF
  location /_internal/monitor/ {
    index index.html;
    proxy_cache gitlab;
    alias /usr/local/share/gitlab/monitor/;
}
NGINX_CONF
  • Run gitlab-ctl reconfigure
  • Now you may use the monitor without providing the parameter gitlab and set token=use_cookie

License

GitLab CI Monitor is licensed under the MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].