Chromium Code Reviews| Index: perf/server/README.md |
| diff --git a/perf/server/README.md b/perf/server/README.md |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..9092e72fda606d59821f3b1ec69d5de82df37e2a |
| --- /dev/null |
| +++ b/perf/server/README.md |
| @@ -0,0 +1,24 @@ |
| +SkiaPerf Server |
| +=============== |
| + |
| +Reads Skia performance data from databases and serves interactive dashboards for easy exploration and annotations. |
| + |
| +Server Setup |
| +============ |
| + |
|
rmistry
2014/06/04 13:59:18
We can instead point from here to a README file in
benchen
2014/06/04 15:23:32
Done.
|
| +Create a GCE instance: |
| + |
| + gcutil --project=google.com:skia-buildbots addinstance skia-perf-b \ |
| + --zone=us-central2-b --external_ip_address=108.170.220.208 \ |
| + --service_account=default \ |
| + --service_account_scopes="https://www.googleapis.com/auth/devstorage.full_control" \ |
| + --network=default --machine_type=n1-standard-1 --image=backports-debian-7-wheezy-v20140331 \ |
| + --persistent_boot_disk |
|
rmistry
2014/06/04 13:59:18
This command is going to be the one that will be i
benchen
2014/06/04 15:23:32
Got it. Is it fine to share and put new constants
rmistry
2014/06/04 15:26:46
Should be fine to share vm_config and put new cons
|
| + |
| +Make sure port 80 is accessible externally for the above instance. |
| + |
| +SSH into the instance: |
| + |
| + gcutil --project=google.com:skia-buildbots ssh --ssh_user=default skia-perf-b |
|
rmistry
2014/06/04 13:59:18
We should try to avoid hardcoding these values bec
benchen
2014/06/04 15:23:32
I see, will figure out how it is done currently.
O
|
| + |
| +Setup scripts can be found in the buildbot repo under compute_engine_scripts/perfserver. |