tree: 7c8afb6251d4bde0c0d0c33918bc31fc2ea5ff53 [path history] [tgz]
  1. go/
  2. jupyter/
  3. lint/
  4. perf-ingest/
  5. res/
  6. scripts/
  7. skiaperf/
  8. templates/
  9. .bowerrc
  10. BIGTABLE.md
  11. bower.json
  12. build_android_release
  13. build_docker_release
  14. build_master_release
  15. build_perf_ingest_release
  16. build_release
  17. create-email-secrets.sh
  18. create-ingestion-android-pubsub-topics.sh
  19. create-ingestion-ct-pubsub-topics.sh
  20. create-ingestion-pubsub-topics.sh
  21. create-perf-ingest-sa.sh
  22. create-perf-sa.sh
  23. DATASTORE.md
  24. DESIGN.md
  25. elements.html
  26. FORMAT.md
  27. Makefile
  28. package.json
  29. probers.json5
  30. README.md
  31. setup.sh
  32. 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