commit | 03971e389cd3bb956fb3212c6a963da46706017e | [log] [tgz] |
---|---|---|
author | Michael Pratt <mpratt@google.com> | Fri Oct 01 10:56:33 2021 -0400 |
committer | Michael Pratt <mpratt@google.com> | Tue Oct 12 21:14:34 2021 +0000 |
tree | 1b36362148f892387eb069f5783fe82888e98639 | |
parent | 40a54f11e90963acb1c431127af77c095654c32d [diff] |
README.md: update for Go module-based build Change-Id: I16fb74da240d97cc4d13fa2fadd57bcdcb48f2f5 Reviewed-on: https://go-review.googlesource.com/c/perf/+/355469 Trust: Michael Pratt <mpratt@google.com> Run-TryBot: Michael Pratt <mpratt@google.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Bryan C. Mills <bcmills@google.com>
This subrepository holds the source for various packages and tools related to performance measurement, storage, and analysis.
cmd/benchstat contains a command-line tool that computes and compares statistics about benchmarks.
cmd/benchsave contains a command-line tool for publishing benchmark results.
storage contains the https://perfdata.golang.org/ benchmark result storage system.
analysis contains the https://perf.golang.org/ benchmark result analysis system.
Both storage and analysis can be run locally; the following commands will run the complete stack on your machine with an in-memory datastore.
go install golang.org/x/perf/storage/localperfdata@latest go install golang.org/x/perf/analysis/localperf@latest localperfdata -addr=:8081 -view_url_base=http://localhost:8080/search?q=upload: & localperf -addr=:8080 -storage=http://localhost:8081
The storage system is designed to have a standardized API, and we encourage additional analysis tools to be written against the API. A client can be found in the storage package.
The easiest way to install is to run go install golang.org/x/perf/cmd/...@latest
. You can also manually git clone the repository and run go install golang.org/x/perf/cmd/...
.
This repository uses Gerrit for code changes. To learn how to submit changes to this repository, see https://golang.org/doc/contribute.html.
The main issue tracker for the perf repository is located at https://github.com/golang/go/issues. Prefix your issue with “x/perf:” in the subject line, so it is easy to find.