All Projects → bobheadxi → Gobenchdata

bobheadxi / Gobenchdata

Licence: mit
📉 Run Go benchmarks, publish results to an interactive web app, and check for performance regressions in your pull requests

Programming Languages

go
31211 projects - #10 most used programming language
typescript
32286 projects
golang
3204 projects

Projects that are alternatives of or similar to Gobenchdata

beapi-bench
Tool for benchmarking apis. Uses ApacheBench(ab) to generate data and gnuplot for graphing. Adding new features almost daily
Stars: ✭ 16 (-77.46%)
Mutual labels:  charts, benchmarking
Daru View
daru-view is for easy and interactive plotting in web application & IRuby notebook. daru-view is a plugin gem to the existing daru gem.
Stars: ✭ 65 (-8.45%)
Mutual labels:  charts
Dashblocks
Enable Analytics in your Apps
Stars: ✭ 48 (-32.39%)
Mutual labels:  charts
Dynverse
A set of tools supporting the development, execution, and benchmarking of trajectory inference methods. 🌍
Stars: ✭ 58 (-18.31%)
Mutual labels:  benchmarking
Pure Vue Chart
Simple and lightweight vue chart component without using chart library dependencies
Stars: ✭ 50 (-29.58%)
Mutual labels:  charts
Wx F2
F2 的微信小程序
Stars: ✭ 1,109 (+1461.97%)
Mutual labels:  charts
Dana
Test/benchmark regression and comparison system with dashboard
Stars: ✭ 46 (-35.21%)
Mutual labels:  benchmarking
Tradestation
EasyLanguage indicators and systems for TradeStation
Stars: ✭ 65 (-8.45%)
Mutual labels:  charts
Kube Score
Kubernetes object analysis with recommendations for improved reliability and security
Stars: ✭ 1,128 (+1488.73%)
Mutual labels:  charts
Pega Helm Charts
Orchestrate a Pega Platform™ deployment by using Docker, Kubernetes, and Helm to take advantage of Pega Platform Cloud Choice flexibility.
Stars: ✭ 58 (-18.31%)
Mutual labels:  charts
Unity Ugui Xcharts
A charting and data visualization library for Unity. 一款基于UGUI的数据可视化图表插件。
Stars: ✭ 1,086 (+1429.58%)
Mutual labels:  charts
Jsbench Me
jsbench.me - JavaScript performance benchmarking playground
Stars: ✭ 50 (-29.58%)
Mutual labels:  benchmarking
Victory Pie
D3 pie & donut chart component for React
Stars: ✭ 61 (-14.08%)
Mutual labels:  charts
Image Denoising Benchmark
Benchmarking Denoising Algorithms with Real Photographs
Stars: ✭ 49 (-30.99%)
Mutual labels:  benchmarking
Wxcharts
A library to create charts in wxWidgets applications
Stars: ✭ 65 (-8.45%)
Mutual labels:  charts
Helm Diff
A helm plugin that shows a diff explaining what a helm upgrade would change
Stars: ✭ 1,035 (+1357.75%)
Mutual labels:  charts
Javafx Dataviewer Wrapper
📊 Exposing charts from Java to JavaFX and the Web!
Stars: ✭ 56 (-21.13%)
Mutual labels:  charts
Gr.rb
Ruby wrapper for the GR framework
Stars: ✭ 60 (-15.49%)
Mutual labels:  charts
Muze
Composable data visualisation library for web with a data-first approach now powered by WebAssembly
Stars: ✭ 1,153 (+1523.94%)
Mutual labels:  charts
Reaviz
📊 Data visualization library for React based on D3
Stars: ✭ 1,141 (+1507.04%)
Mutual labels:  charts

📉 gobenchdata

View Action publish@v1 pipeline demo Demo

gobenchdata is a tool for parsing and inspecting go test -bench data, and a GitHub Action for continuous benchmarking. It was inspired by the deno.land continuous benchmarks, which aims to display performance improvements and regressions on a continuous basis.

example

GitHub Action

gobenchdata can be used as GitHub Action for uploading Go benchmark data as JSON to gh-pages and visualizing it with a generated web app or your own web application.

Setup

For example, in .github/workflows/push.yml, using the new YAML syntax for workflows, a simple benchmark run and publish workflow would look like:

name: gobenchdata publish
on: push
jobs:
  publish:
    runs-on: ubuntu-latest
    steps:
    - name: checkout
      uses: actions/[email protected]
    - name: gobenchdata publish
      uses: bobheadxi/[email protected]
      with:
        PRUNE_COUNT: 30
        GO_TEST_FLAGS: -cpu 1,2
        PUBLISH: true
        PUBLISH_BRANCH: gh-pages
      env:
        GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}

Learn more about GitHub Actions in the official documentation.

Configuration

inputs

Input variables are configured using jobs.<job_id>.steps.with.

Variable Default Purpose
SUBDIRECTORY . subdirectory of project to run commands from
GO_BENCHMARKS . benchmarks to run (argument for -bench)
GO_TEST_FLAGS additional flags for go test
GO_TEST_PKGS ./... packages to test (argument for go test)
Publishing

The following inputs enable publishing - this merges and publishes benchmark results to a repository and branch of your choice. This is most useful in conjunction with the gobenchdata web application.

Variable Default Purpose
PUBLISH false if true, publishes results
PUBLISH_REPO an alternative repository to publish to
PUBLISH_BRANCH gh-pages branch to publish to
PRUNE_COUNT 0 number of past runs to keep (0 keeps everything)
GIT_COMMIT_MESSAGE "add new benchmark run" the commit message for the benchmark update
BENCHMARKS_OUT benchmarks.json destination path of benchmark data
Checks

The following inputs are for enabling Pull Request Checks, which allow you to watch for performance regressions in your pull requests.

Variable Default Purpose
CHECKS false if true, runs checks and sets JSON results to checks-results
CHECKS_CONFIG gobenchdata-checks.yml path to checks configuration
PUBLISH_REPO repository of benchmark data to check against
PUBLISH_BRANCH gh-pages branch of benchmark data to check against
BENCHMARKS_OUT benchmarks.json path to benchmark data to check against

env

Environment variables are configured using jobs.<job_id>.steps.env.

Variable Recommended Purpose
GITHUB_TOKEN ${{ secrets.GITHUB_TOKEN }} token to provide access to repository
GITHUB_ACTOR set by GitHub the user to make commits as

Note that for GITHUB_TOKEN, it seems that pushes to gh-pages made by the default secrets.GITHUB_TOKEN might not trigger page builds. This issue can be resolved by using a personal access token instead.

Pull Request Checks

Instead of publishing results, benchmark output can be used to pass and fail pull requests using CHECKS: true. To get started, set up the checks configuration:

go get -u go.bobheadxi.dev/gobenchdata
gobenchdata checks generate

This will generate a file, gobenchdata-checks.yml, where you can configure what checks are executed. The checks are run against any benchmarks that match given package and benchmarks values, which should be provided as regular expressions.

Simple Example

checks:
- name: My Check
  description: |-
    Define a check here - in this example, we caculate % difference for NsPerOp in the diff function.
    diff is a function where you receive two parameters, current and base, and in general this function
    should return a negative value for an improvement and a positive value for a regression.
  package: .
  benchmarks: []
  diff: (current.NsPerOp - base.NsPerOp) / base.NsPerOp * 100
  thresholds:
    max: 10

Visualisation

The gobenchdata GitHub action eventually generates a JSON file with past benchmarks. You can visualize these continuous benchmarks by creating a web app that reads from the JSON benchmarks file, or by using gobenchdata. An easy way to get started is:

go get -u go.bobheadxi.dev/gobenchdata
gobenchdata web generate --web.config-only .
gobenchdata web serve # opens visualization in browser

You can configure the web application using gobenchdata-web.yml. The configuration allows you to define groups of charts, where each group can be used to compare a set of benchmarks. Benchmarks are selected with regular expressions by package and benchmark names provided in the configuration.

Note that in each set of compared benchmarks, every metric will get its own chart. You can select which metrics to display using the metrics option.

Example

title: gobenchdata web
description: Benchmarks generated using 'gobenchdata'
repository: https://github.com/bobheadxi/gobenchdata
benchmarksFile: benchmarks.json
chartGroups:
  - name: Demo Benchmarks
    description: |
      This is a demo for gobenchdata, a tool and GitHub action for setting up simple continuous
      benchmarks to monitor performance improvements and regressions in your Golang benchmarks!
    charts:
      - name: specify charts by package
        package: go.bobheadxi.dev\/gobenchdata\/demo
      - name: match on specific benchmarks across packages with glob patterns
        benchmarks: [ 'BenchmarkFib.' ]
  - name: More Demo Benchmarks
    description: Create multiple groups of benchmarks
    charts:
      - name: match by a combination of package and benchmarks
        package: go.bobheadxi.dev\/gobenchdata\/.
        benchmarks: [ 'BenchmarkPizzas.', '.FibSlow.' ]

You can output the entire web application (to publish to Github pages, for example) using:

gobenchdata web generate ./app

Command Line Interface

gobenchdata, which the GitHub Action leverages to manage benchmark data, is also available as a CLI:

go get -u go.bobheadxi.dev/gobenchdata
gobenchdata help

The easiest way to use the CLI is by piping the output of go test -bench to it - gobenchdata will consume the output and generate a JSON report for you.

go test -bench . -benchmem ./... | gobenchdata --json bench.json

You can use this report to create your own charts, or just use the built-in web application:

gobenchdata web serve

gobenchdata can also execute checks for you to help you ensure performance regressions don't happen:

gobenchdata checks generate
gobenchdata checks eval ${base benchmarks} ${current benchmarks} --checks.pretty
Example Report

BASE CURRENT PASSED CHECKS FAILED CHECKS TOTAL
5aa9b7f901e770f1364bfc849aaba0cc06066336 abfdd5c29b1aff48cb22e0cbb6f4f7526ad85604 2 0 2
CHECK PACKAGE BENCHMARK DIFF COMMENT
An example NsPerOp check go.bobheadxi.dev/gobenchdata/demo BenchmarkFib10/Fib() -2.61
An example NsPerOp check go.bobheadxi.dev/gobenchdata/demo BenchmarkFib10/Fib()-2 -2.85
An example NsPerOp check go.bobheadxi.dev/gobenchdata/demo BenchmarkFib10/FibSlow() -2.47
An example NsPerOp check go.bobheadxi.dev/gobenchdata/demo BenchmarkFib10/FibSlow()-2 -2.19
An example NsPerOp check go.bobheadxi.dev/gobenchdata/demo BenchmarkPizzas/Pizzas() -1.85
An example NsPerOp check go.bobheadxi.dev/gobenchdata/demo BenchmarkPizzas/Pizzas()-2 -2.45
An example NsPerOp check go.bobheadxi.dev/gobenchdata/demo BenchmarkPizzas/PizzasSquared() -5.71
An example NsPerOp check go.bobheadxi.dev/gobenchdata/demo BenchmarkPizzas/PizzasSquared()-2 -3.03
An example custom metric check go.bobheadxi.dev/gobenchdata/demo BenchmarkPizzas/Pizzas() 8.00
An example custom metric check go.bobheadxi.dev/gobenchdata/demo BenchmarkPizzas/Pizzas()-2 4.00
An example custom metric check go.bobheadxi.dev/gobenchdata/demo BenchmarkPizzas/PizzasSquared() 4.00
An example custom metric check go.bobheadxi.dev/gobenchdata/demo BenchmarkPizzas/PizzasSquared()-2 1.00

For more details on how to use checks, see the pull request checks documentation.


Contributions

Please report bugs and requests in the repository issues!

See CONTRIBUTING.md for more detailed development documentation.

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].