commit | 511bcb8b8934a096c44f7abf5184abceb3f2ca3f | [log] [tgz] |
---|---|---|
author | cuishuang <imcusg@gmail.com> | Mon Mar 07 16:33:26 2022 +0000 |
committer | Alberto Donizetti <alb.donizetti@gmail.com> | Tue Mar 08 08:19:27 2022 +0000 |
tree | e6becfcddbca34d6fadb4c62af6dee4da52907f2 | |
parent | 03971e389cd3bb956fb3212c6a963da46706017e [diff] |
analysis: fix typo Change-Id: I7ae61208c4eb08d68f61ec992e2faed73b9a2373 GitHub-Last-Rev: a7fef51fcede189739ecd60c9fca0caae79fec80 GitHub-Pull-Request: golang/perf#3 Reviewed-on: https://go-review.googlesource.com/c/perf/+/390415 Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org> Trust: Alberto Donizetti <alb.donizetti@gmail.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.