{"id":36467249,"url":"https://github.com/rpickz/go-benchpress","last_synced_at":"2026-01-15T02:29:19.449Z","repository":{"id":57571174,"uuid":"347180721","full_name":"rpickz/go-benchpress","owner":"rpickz","description":"A Go benchmark visualisation utility and toolkit","archived":false,"fork":false,"pushed_at":"2025-02-21T17:28:33.000Z","size":2074,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-12T01:59:25.095Z","etag":null,"topics":["analysis","bar-chart","benchmarking","chart","csv","json","png","svg","xml"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rpickz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-03-12T19:48:13.000Z","updated_at":"2025-02-21T17:28:37.000Z","dependencies_parsed_at":"2024-06-20T08:30:14.897Z","dependency_job_id":null,"html_url":"https://github.com/rpickz/go-benchpress","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/rpickz/go-benchpress","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rpickz%2Fgo-benchpress","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rpickz%2Fgo-benchpress/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rpickz%2Fgo-benchpress/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rpickz%2Fgo-benchpress/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rpickz","download_url":"https://codeload.github.com/rpickz/go-benchpress/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rpickz%2Fgo-benchpress/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28441304,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-15T00:55:22.719Z","status":"online","status_checked_at":"2026-01-15T02:00:08.019Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["analysis","bar-chart","benchmarking","chart","csv","json","png","svg","xml"],"created_at":"2026-01-12T00:06:21.237Z","updated_at":"2026-01-15T02:29:19.441Z","avatar_url":"https://github.com/rpickz.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Go Benchpress Logo](./logo.svg)\n\n# Go Benchpress\n\u003ca href=\"https://pkg.go.dev/github.com/rpickz/go-benchpress\"\u003e\u003cimg src=\"https://img.shields.io/badge/api-reference-blue.svg?style=flat-square\" alt=\"GoDoc\"\u003e\u003c/a\u003e\n[![codecov](https://codecov.io/gh/rpickz/go-benchpress/branch/main/graph/badge.svg?token=D3097TFF89)](https://codecov.io/gh/rpickz/go-benchpress)\n\nGo Benchpress is a visualisation utility for comparing the results of benchmarks.\n\nBenchmarks are a really useful tool for comparing a couple of different strategies for achieving a goal, but also for \nan easy understanding of performance regressions within the system.\n\nSub-benchmarks are particularly useful for understanding how a particular feature operates over different data-set sizes.\n\nGo Benchpress simplifies visualising these benchmark results - designed particularly for sub-benchmarks and demonstrating\nhow your code performs at different data-set sizes - visually.\n\n## What Is Output?\n\nGo Benchpress outputs, by default, a file of results for each benchmark passed in (via the Benchmark result data).\n\nThis is so that sub-benchmarks can be compared more easily.\n\nA second mode of operation exists - 'no separation'.  This is where the results of __all__ the passed in benchmarks\nare output into a single file.\n\nYou will find more information on the specifics of this in the [CSV Parser](./examples/csvparser) package - the README\ncontains detailed instructions on CLI usage, and how to make use of these different modes.\n\nSo, given Go Benchpress will either output a file for each benchmark, or a single file for all benchmarks, what formats\nare available?\n\n## What Does It Look Like?\n\nGo Benchpress output can look like a variety of things.\n\nGraphically, this is what a Go Benchpress output looks like:\n\n![Example Output](examples/csvparser/example_output.svg \"Example Output\")\n\nAs you can see, it compares all the results for a single benchmark (across its various sub-benchmarks), displaying\ntheir relative values visually.\n\nYou can choose between several dimensions (including nanoseconds per operation, bytes per operation, etc.) - for\nthe most recent advice on this, please consult the help text using:\n```bash\ngobenchpress -help\n```\n\nThere are also other formats to choose from - overall the following formats are supported:\n1. SVG (as a bar chart)\n2. PNG (as a bar chart)\n3. JSON\n4. CSV\n5. XML\n\nSee the example [CSV Parser](./examples/csvparser) package for instructions on how to use different formats, and what\nthey look like.\n\n## How to Install?\n\nRun the following command at a terminal:\n```bash\ngo get github.com/rpickz/go-benchpress/cmd/gobenchpress\n```\n\n## How to Use?\n\nSee the example [CSV Parser](./examples/csvparser) package for instructions on how to use.\n\nFor more detailed instructions, see the CLI usage info with the following:\n```bash\ngobenchpress -help\n```\n\n## License?\n\nMIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frpickz%2Fgo-benchpress","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frpickz%2Fgo-benchpress","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frpickz%2Fgo-benchpress/lists"}