NOT MAINTAINED ANYMORE! New project is located on https://github.com/mozilla-frontend-infra/js-perf-dashboard -- AreWeFastYet is a set of tools used for benchmarking the major browser's JavaScript virtual machines against each other, as well as reporting the results on a website as insightful graphs showing the evolution of performance over time.
Перейти к файлу
Mozilla 5146c56e35 Fix driver bugs. 2013-05-06 17:52:03 -07:00
benchmarks Fix up asmjs-ubench harness to be compatible with AWFY driver. 2013-05-06 17:31:09 -07:00
database Add cset range URL information to master.js. 2012-12-03 23:24:02 +00:00
driver Fix driver bugs. 2013-05-06 17:52:03 -07:00
server Add cset range URL information to master.js. 2012-12-03 23:24:02 +00:00
website Allow hiding and unhiding lines by clicking legend entries. 2013-03-13 22:32:46 +00:00
README Add Octane support to the driver. 2012-12-04 15:34:18 -08:00

README

The latest AWFY is five components:
 (1) MySQL database that stores statistics.
 (2) Hidden PHP script on the webserver, where stats get sent.
 (3) Python driver that runs on each benchmark computer, and submits stats.
 (4) Python aggregator that builds JSON data from the DB.
 (5) Static HTML as the frontpage, that queries JSON via XHR.

NOTE: (2), (3), and (5) must be on the same webserver, otherwise timestamps
might not be computed correctly.

######### SET UP ##########
Setting up (1):
  Run database/schema.sql

Setting up (2):
  Drop website/UPDATE.PHP and website/internals.php somewhere, and
  rename UPDATE.PHP to something secret.

Setting up (3):
  I set it up like:
   mkdir awfy
   cd awfy
   svn checkout http://v8.googlecode.com/svn/branches/bleeding_edge/ v8
   svn checkout https://svn.webkit.org/repository/webkit/trunk WebKit
   hg clone http://hg.mozilla.org/integration/mozilla-inbound
   mkdir driver
   cp <awfy-src>/driver/* driver/
   cd driver
   hg clone http://hg.mozilla.org/projects/kraken
   svn checkout http://v8.googlecode.com/svn/trunk/benchmarks v8-v7
   svn checkout https://svn.webkit.org/repository/webkit/trunk/PerformanceTests/SunSpider
   svn checkout http://octane-benchmark.googlecode.com/svn/trunk/ octane
   
  (a) Add a database entry for the machine configuration.
  (b) Edit driver/awfy.config to match the build architecture you want, and machine
      database entry.
  (c) Add a cronjob to run dostuff.py periodically. AWFY.com runs every 30min.

Setting up (4):
  Put awfy-server.config in /etc/, edit it to point at your database and 
  website/data folder. Then put update.py in a cronjob. It will dump files
  where appropriate. AWFY.com does this every 15min.

  update.py generates various JSON files:
   (a) "raw" and "metadata" files cache database queries from run to run,
       so we don't have to make expensive database queries.
   (b) "aggregate" files are used for the front page.
   (c) "condensed" files are used for one level of zooming, so users don't
       have to download the raw data set right away.
   
  The metadata and raw JSON files are updated as needed. The aggregate and
  condensed files are always re-generated from the raw data.

Setting up (5):
  Nothing special needed. Note that our flot is slightly modified, so it
  might not work to just replace it.