summaryrefslogtreecommitdiff
path: root/misc/dashboard/godashboard/gobuild.py
AgeCommit message (Collapse)AuthorFilesLines
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+558
2011-09-13Imported Upstream version 60Ondřej Surý1-558/+0
2011-08-03Imported Upstream version 59upstream/59Ondřej Surý1-6/+1
2011-06-30Imported Upstream version 58upstream/58Ondřej Surý1-114/+240
2011-04-28Imported Upstream version 2011.04.27upstream/2011.04.27Ondřej Surý1-346/+39
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý1-3/+1
2011-04-20Imported Upstream version 2011.03.07.1upstream/2011.03.07.1Ondřej Surý1-12/+51
2010-05-19dashboard: reintroduce Benchmark modelAndrew Gerrand1-2/+4
R=rsc CC=golang-dev http://codereview.appspot.com/1217046
2010-05-03dashboard: fix benchmark json outputAndrew Gerrand1-1/+1
Fixes issue 722. R=rsc CC=golang-dev http://codereview.appspot.com/1065041
2010-04-20godashboard: remove obselete data models and conversion codeAndrew Gerrand1-61/+0
R=rsc CC=golang-dev http://codereview.appspot.com/919045
2010-04-20godashboard: bz2 compress logs in data storeAndrew Gerrand1-7/+10
This results in a 10-20x size reduction per record. (from ~150kb to ~10kb) This revision has been pushed live, as I'm in the process of converting Log records to bz2-compresed CompressedLog records. I would have waited but we're running seriously low on space and it seemed like a sane (and reversible) move. R=rsc CC=golang-dev http://codereview.appspot.com/872048
2010-04-05godashboard: fix benchmarks page (first pass)Andrew Gerrand1-18/+42
R=rsc CC=golang-dev http://codereview.appspot.com/844044
2010-03-31godashboard: new stylesheet, build status paginationAndrew Gerrand1-1/+22
R=rsc, gri, r CC=golang-dev http://codereview.appspot.com/822044
2010-02-25dashboard: more performance tuningRuss Cox1-176/+230
various caching. make benchmark data a list in a single per-builder,benchmark record instead of having one record for each data point. significant reduction in datastore cpu charges. R=agl1, agl CC=golang-dev http://codereview.appspot.com/217111
2010-02-19dashboard: lots of caching to avoid datastore queriesRuss Cox1-109/+126
reorganize benchmark computation so that it is incremental. if it times out, it doesn't lose the pieces it already computed, so that next time it has a fighting chance to finish. R=agl1, agl CC=golang-dev http://codereview.appspot.com/216046
2010-02-05dashboard: present benchmarksRuss Cox1-43/+228
* fix bug in benchmark collection: bad benchmark data key meant that all the builders collided when writing data. * report benchmarks even if make bench exits non-zero. * graphical and json presentations R=agl1 CC=golang-dev http://codereview.appspot.com/201065
2010-01-27dashboard: builder tweaksRuss Cox1-7/+33
R=agl1 CC=golang-dev http://codereview.appspot.com/194116
2010-01-27godashboard: fiddlingRuss Cox1-10/+23
* some tweaks to dashboard html/css layout * use hmac to generate per-builder subkeys R=agl1 CC=golang-dev http://codereview.appspot.com/194092
2010-01-26dashboard: add benchmarking support.Adam Langley1-1/+139
This has actually been running for a while and gathering benchmark data. I haven't had a chance to add a UI for it yet however. R=rsc CC=golang-dev http://codereview.appspot.com/194082 Committer: Russ Cox <rsc@golang.org>
2010-01-07Add builder scripts.Adam Langley1-0/+285
These are the scripts behind godashboard.appspot.com. Nothing is particularly beautiful about it, but it does run. I still need to add support for per-builder keys and for running the benchmarks. R=rsc CC=golang-dev http://codereview.appspot.com/183153