Socket
Socket
Sign inDemoInstall

go.bobheadxi.dev/gobenchdata

Package Overview
Dependencies
38
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    go.bobheadxi.dev/gobenchdata

Gobenchdata is a tool for inspecting golang benchmark outputs. To install it, you must have Go installed: Then pipe your benchmark into the tool: You can create a sort of database of benchmarks by appending new benchmarks to an existing file: You can also merge results: Visualize the results: Compare results: Learn more in the repository README: https://github.com/bobheadxi/gobenchdata


Version published

Readme

Source

📉 gobenchdata View Action demo website

publish@v1 pipeline demo Go Reference go-recipes

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

The default action, uses: bobheadxi/gobenchdata@v1, is distributed as a Docker container action. This means that the Go version benchmarks are run with are tied to the version of Go that ships with the gobenchdata action. For greater flexibility, such as to use custom Go versions, see custom setup.

Learn more about GitHub Actions in the official documentation.

Docker container action

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/checkout@v2
    - name: gobenchdata publish
      uses: bobheadxi/gobenchdata@v1
      with:
        PRUNE_COUNT: 30
        GO_TEST_FLAGS: -cpu 1,2
        PUBLISH: true
        PUBLISH_BRANCH: gh-pages
      env:
        GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
Custom setup

For greater flexibility and the ability to target custom Go versions, you can either:

  • directly use the entrypoint.sh script, or some variant of it
  • run gobenchdata action, which replicates the behaviour of the GitHub Action

Using gobenchdata action to replicate the Docker container action would look like:

name: gobenchdata publish
on: push
jobs:
  publish:
    runs-on: ubuntu-latest
    steps:
    - name: checkout
      uses: actions/checkout@v2
    - uses: actions/setup-go@v2
      with: { go-version: "1.18" }
    - name: gobenchdata publish
      run: go run go.bobheadxi.dev/gobenchdata@v1 action
      env:
        GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
        # Instead of 'with: ...', provide environment variables and
        # prefix each input variable with 'INPUT'
        INPUT_PRUNE_COUNT: 30
        INPUT_GO_TEST_FLAGS: -cpu 1,2
        INPUT_PUBLISH: true
        INPUT_PUBLISH_BRANCH: gh-pages

Configuration

inputs

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

VariableDefaultPurpose
SUBDIRECTORY.subdirectory of project to run commands from
GO_BENCHMARKS.benchmarks to run (argument for -bench)
GO_TEST_FLAGSadditional 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.

VariableDefaultPurpose
PUBLISHfalseif true, publishes results
PUBLISH_REPOan alternative repository to publish to
PUBLISH_BRANCHgh-pagesbranch to publish to
PRUNE_COUNT0number of past runs to keep (0 keeps everything)
GIT_COMMIT_MESSAGE"add new benchmark run"the commit message for the benchmark update
BENCHMARKS_OUTbenchmarks.jsondestination 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.

VariableDefaultPurpose
CHECKSfalseif true, runs checks and sets JSON results to checks-results
CHECKS_CONFIGgobenchdata-checks.ymlpath to checks configuration
PUBLISH_REPOrepository of benchmark data to check against
PUBLISH_BRANCHgh-pagesbranch of benchmark data to check against
BENCHMARKS_OUTbenchmarks.jsonpath to benchmark data to check against
env

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

VariableRecommendedPurpose
GITHUB_TOKEN${{ secrets.GITHUB_TOKEN }}token to provide access to repository
GITHUB_ACTORset by GitHubthe 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 install go.bobheadxi.dev/gobenchdata@latest
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 install go.bobheadxi.dev/gobenchdata@latest
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 install go.bobheadxi.dev/gobenchdata@latest
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}
Example Report

BASECURRENTPASSED CHECKSFAILED CHECKSTOTAL
5aa9b7f901e770f1364bfc849aaba0cc06066336abfdd5c29b1aff48cb22e0cbb6f4f7526ad85604202
CHECKPACKAGEBENCHMARKDIFFCOMMENT
An example NsPerOp checkgo.bobheadxi.dev/gobenchdata/demoBenchmarkFib10/Fib()-2.61
An example NsPerOp checkgo.bobheadxi.dev/gobenchdata/demoBenchmarkFib10/Fib()-2-2.85
An example NsPerOp checkgo.bobheadxi.dev/gobenchdata/demoBenchmarkFib10/FibSlow()-2.47
An example NsPerOp checkgo.bobheadxi.dev/gobenchdata/demoBenchmarkFib10/FibSlow()-2-2.19
An example NsPerOp checkgo.bobheadxi.dev/gobenchdata/demoBenchmarkPizzas/Pizzas()-1.85
An example NsPerOp checkgo.bobheadxi.dev/gobenchdata/demoBenchmarkPizzas/Pizzas()-2-2.45
An example NsPerOp checkgo.bobheadxi.dev/gobenchdata/demoBenchmarkPizzas/PizzasSquared()-5.71
An example NsPerOp checkgo.bobheadxi.dev/gobenchdata/demoBenchmarkPizzas/PizzasSquared()-2-3.03
An example custom metric checkgo.bobheadxi.dev/gobenchdata/demoBenchmarkPizzas/Pizzas()8.00
An example custom metric checkgo.bobheadxi.dev/gobenchdata/demoBenchmarkPizzas/Pizzas()-24.00
An example custom metric checkgo.bobheadxi.dev/gobenchdata/demoBenchmarkPizzas/PizzasSquared()4.00
An example custom metric checkgo.bobheadxi.dev/gobenchdata/demoBenchmarkPizzas/PizzasSquared()-21.00

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

The CLI also embeds the same script that the GitHub Action offers - see custom setup for more details.


Contributions

Please report bugs and requests in the repository issues!

See CONTRIBUTING.md for more detailed development documentation.

FAQs

Last updated on 30 Jan 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc