crawling-gocd

crawling the gocd build histories of pipelines and calculate the metrics


License
MIT
Install
pip install crawling-gocd==1.3.0

Documentation

Crawling-GoCD

pypi Build Coverage Status

This project works for crawling the build histories of pipelines and calculate the metrics.

Installation

  1. python 3
  2. pipenv

Development

  1. Install the packages
pipenv sync --dev
  1. Run test
pipenv run python -m unittest discover
  1. bump version(using bumversion)
pipenv run bumpversion [major|minor|patch]
  1. deploy to pypi Add a tag for new commit, then push them, the commit and tag, to origin. The Travis CI will auto deploy package into pypi after pass the build.

Run

  1. Input configration in the file crawling-gocd.yaml
pipelines:
- 
  name: account-management-normal-master
  calc_grouped_stages: 
    ci:
      - code-scan
      - test-integration
      - build
    qa:
      - flyway-qa
      - deploy-qa
  start_time: 2019-07-10 00:00:00
  end_time: 2019-08-12 23:59:59
- 
  name: account-management-normal-release
  calc_grouped_stages: 
    uat:
      - flyway-uat
      - deploy-uat

global:
start_time: 2019-07-01 00:00:00
end_time: 2019-08-12 23:59:59

pipeline name is the string in the history API URL.

pipeline calc_grouped_stages includes each phase needed to calculate metrics.
Such as, if we want to calculate the deployment frequency for QA environment, and the QA deployment has two stages.
If one of the two stages fails, determines QA deployment failed, so we configure the qa phase has flyway-qadeploy-qa.

global start_time and global end_time, determines the time slot for crawling pipeline histories.
Also, there are pipeline start_time and pipeline end_time, they have a high priority to global start_time and global end_time.

  1. Run command
pipenv run python -m crawling_gocd

Attention: Need set the environment variables GOCD_SITEGOCD_USERGOCD_PASSWORD before running the command. Alternatively, use the following command:

GOCD_SITE="<your_gocd_site>" GOCD_USER="<your_username>" GOCD_PASSWORD="<your_password>" pipenv run python -m crawling_gocd

Expansibility

So far the crawling URL is according to the goCD version 18.11.
If need use to incompatible goCD version, just replace the file Crawler.py.
If need some new metrics handler, just write the implementation class under the superclass CalculateStrategyHandler, and assemble into Calculator in the file Portal.