tree: 6bd440dedea3e98dfa9fdc619be4dbf09c5538dc [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. DATASTORE.md
  14. default.json5
  15. DESIGN.md
  16. elements.html
  17. FORMAT.md
  18. Makefile
  19. microbench.json
  20. package.json
  21. probers.json5
  22. README.md
  23. skiapush.json5
  24. skpbench.json
  25. triage.md
  26. 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