tree: c8013941fe52d67b01f7bbe88243ca31ea52c9be [path history] [tgz]
  1. go/
  2. lint/
  3. res/
  4. scripts/
  5. sys/
  6. templates/
  7. .bowerrc
  8. bower.json
  9. build_android_release
  10. build_release
  11. default.toml
  12. DESIGN.md
  13. elements.html
  14. FORMAT.md
  15. Makefile
  16. microbench.json
  17. package.json
  18. perf_ingest.toml
  19. README.md
  20. skpbench.json
  21. triage.md
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