Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 SkiaPerf Server | |
| 2 =============== | |
| 3 | |
| 4 Reads Skia performance data from databases and serves interactive dashboards for easy exploration and annotations. | |
| 5 | |
| 6 Server Setup | |
| 7 ============ | |
| 8 | |
|
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.
| |
| 9 Create a GCE instance: | |
| 10 | |
| 11 gcutil --project=google.com:skia-buildbots addinstance skia-perf-b \ | |
| 12 --zone=us-central2-b --external_ip_address=108.170.220.208 \ | |
| 13 --service_account=default \ | |
| 14 --service_account_scopes="https://www.googleapis.com/auth/devstorage.full_ control" \ | |
| 15 --network=default --machine_type=n1-standard-1 --image=backports-debian-7- wheezy-v20140331 \ | |
| 16 --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
| |
| 17 | |
| 18 Make sure port 80 is accessible externally for the above instance. | |
| 19 | |
| 20 SSH into the instance: | |
| 21 | |
| 22 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
| |
| 23 | |
| 24 Setup scripts can be found in the buildbot repo under compute_engine_scripts/per fserver. | |
| OLD | NEW |