tree: 070ef8418c6da71dfbe10150a5d83de6a667bbe4 [path history] [tgz]
  1. go/
  2. jupyter/
  3. lint/
  4. res/
  5. scripts/
  6. sys/
  7. templates/
  8. .bowerrc
  9. bower.json
  10. build_android_release
  11. build_master_release
  12. build_release
  13. default.toml
  14. DESIGN.md
  15. elements.html
  16. FORMAT.md
  17. Makefile
  18. microbench.json
  19. package.json
  20. perf_ingest.toml
  21. README.md
  22. skpbench.json
  23. triage.md
  24. vm.go
perf/README.md

SkiaPerf Server

Reads Skia performance data from databases and serves interactive dashboards for easy exploration and annotations.

Server Setup

Please refer to compute_engine_scripts/perf/README under the repo for instructions on creating and destroying the instance. The rest of this document is what to do once the instance is created.

Metadata

Secrets that we need at runtime are stored in the metadata server.

The current set of project level metadata required is:

Developing

The easiest way to develop should be to do:

go get -u go.skia.org/infra/perf/go/...

Which will fetch the repository into the right location and download dependencies.

Then to build everything:

cd $GOPATH/src/go.skia.org/infra/perf
make all

Make sure the $GOPATH/bin is on your path so that you can easily run the executables after they are generated.

To run the tests:

make test