If you have a CI/CD setup, it is really important to keep a central display and follow the builds and process going on the CI tool. This project aims to be the dashboard that will allow you to do present better results at a central display with buildbot
.
The project has some precompiled binaries, if your enviroment match one of the releases above, this is the most simple way to use this project.
OS | Arch | Size | SHA1 Binary |
---|---|---|---|
OSX | 64-bit | 6,5MB | 2df4875acc7127bca5f3a74ad556b641d668eeb5 |
Linux | 64-bit | 6,5MB | b8990466151cddc6097e5af84f15f420b366aa6e |
buildbot
is the only required flag, you must provide the base url of the running builbot.
$ ./buildbot_dashboard -h
-buildbot string
buildbot url eg. http://10.0.0.1/
-filter string
regex applied over the builder name
-invalidate int
cache invalidate in seconds (default and min 5 minutes) (default 10)
-refresh int
refresh rate in seconds (default and min 20 seconds) (default 20)
How to use with runit.
As this project is built in go
you can build it in multiple platforms with:
$ go get -d github.com/ghophp/buildbot-dashboard
$ cd $GOPATH/src/github.com/ghophp/buildbot-dashboard
$ make
This will fetch the code and generate the assets as binary, then you can go install
or go build
, and then run:
$ buildbot-dashboard --buildbot="http://10.0.0.1/"
If you have $GOPATH/bin
at your $PATH
then you can run from everywhere the command.
You can also run with the go run
with:
$ go run *.go -builbot="http://10.0.0.1/"
- Non-reload monitoring
- Enhanced UI with better visualization of the builders
- Easy usage with single command
Filter
options allow you to just show what matters- Save arrangement of the dashboard
Zoom compliant
layout
As we use gridster and a structured style, if your buildbot has a lot of builders, you can take advantage of the browser zoom
to reduce the size of the blocks and so, use more space to move your grid.
As this project is build over martini
please consider setting this env variables
when deploy:
export PORT=3000
export MARTINI_ENV=production
By default the project will cache the builders to avoid the delay of reloading it everytime. If you insert a new builder or remove one, you can force the reload of the cache in the UI, there is a button on left side. This button will force the builders to be reloaded and the localStorage will also be cleaned.
Thanks to nbari and paw for helping and supporting open source.