Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(47)

Issue 35480043: code review 35480043: dashboard/app: benchmarking support (data model + build... (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
12 years, 5 months ago by dvyukov
Modified:
12 years, 5 months ago
Reviewers:
adg
CC:
adg, golang-dev
Visibility:
Public.

Description

dashboard/app: benchmarking support (data model + builder handlers) Adds new fields PerfBenchmarks and Benchmark to Commit. Adds new entities -- CommitRun, PerfResult, PerfMetricRun, PerfTodo and PerfConfig. Adds new "benchmark-go-commit" todo. Adds perf-result handler. The design doc: https://docs.google.com/a/google.com/document/d/10KInCeTYmpk7UZZLDGNktsisjctQnfm7FfOtr8RbFks/pub

Patch Set 1 #

Patch Set 2 : diff -r bca1eaf04acb https://code.google.com/p/dvyukov-go-perf-dashboard #

Patch Set 3 : diff -r bca1eaf04acb https://code.google.com/p/dvyukov-go-perf-dashboard #

Patch Set 4 : diff -r bca1eaf04acb https://code.google.com/p/dvyukov-go-perf-dashboard #

Patch Set 5 : diff -r bca1eaf04acb https://code.google.com/p/dvyukov-go-perf-dashboard #

Patch Set 6 : diff -r bca1eaf04acb https://code.google.com/p/dvyukov-go-perf-dashboard #

Total comments: 4

Patch Set 7 : diff -r bca1eaf04acb https://dvyukov%40google.com@code.google.com/r/dvyukov-go-perf-dashboard/ #

Patch Set 8 : diff -r bca1eaf04acb https://dvyukov%40google.com@code.google.com/r/dvyukov-go-perf-dashboard/ #

Total comments: 12

Patch Set 9 : diff -r 57ec18030057 https://dvyukov%40google.com@code.google.com/r/dvyukov-go-perf-dashboard/ #

Patch Set 10 : diff -r 57ec18030057 https://dvyukov%40google.com@code.google.com/r/dvyukov-go-perf-dashboard/ #

Patch Set 11 : diff -r 57ec18030057 https://dvyukov%40google.com@code.google.com/r/dvyukov-go-perf-dashboard/ #

Total comments: 2

Patch Set 12 : diff -r 57ec18030057 https://dvyukov%40google.com@code.google.com/r/dvyukov-go-perf-dashboard/ #

Unified diffs Side-by-side diffs Delta from patch set Stats (+752 lines, -30 lines) Patch
M dashboard/app/app.yaml View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +2 lines, -2 lines 0 comments Download
M dashboard/app/build/build.go View 1 2 3 4 5 6 7 8 8 chunks +372 lines, -5 lines 0 comments Download
M dashboard/app/build/handler.go View 1 2 3 4 5 6 7 8 9 6 chunks +251 lines, -0 lines 0 comments Download
M dashboard/app/build/test.go View 1 2 3 4 5 6 7 8 9 10 9 chunks +127 lines, -23 lines 0 comments Download

Messages

Total messages: 12
dvyukov
Hello adg@golang.org (cc: golang-dev@googlegroups.com), I'd like you to review this change to https://code.google.com/p/dvyukov-go-perf-dashboard
12 years, 5 months ago (2013-12-01 13:29:29 UTC) #1
dvyukov
https://codereview.appspot.com/35480043/diff/90001/dashboard/app/build/handler.go File dashboard/app/build/handler.go (right): https://codereview.appspot.com/35480043/diff/90001/dashboard/app/build/handler.go#newcode117 dashboard/app/build/handler.go:117: cr, err := GetCommitRun(c, com.Num) This does not work ...
12 years, 5 months ago (2013-12-03 07:25:34 UTC) #2
dvyukov
PTAL https://codereview.appspot.com/35480043/diff/90001/dashboard/app/build/handler.go File dashboard/app/build/handler.go (right): https://codereview.appspot.com/35480043/diff/90001/dashboard/app/build/handler.go#newcode117 dashboard/app/build/handler.go:117: cr, err := GetCommitRun(c, com.Num) On 2013/12/03 07:25:35, ...
12 years, 5 months ago (2013-12-03 16:32:07 UTC) #3
adg
Looks pretty good https://codereview.appspot.com/35480043/diff/130001/dashboard/app/build/build.go File dashboard/app/build/build.go (right): https://codereview.appspot.com/35480043/diff/130001/dashboard/app/build/build.go#newcode100 dashboard/app/build/build.go:100: Benchmark bool // Needs benchmarking? BenchmarkPending? ...
12 years, 5 months ago (2013-12-04 03:10:40 UTC) #4
adg
Can you add some tests to test.go?
12 years, 5 months ago (2013-12-04 03:11:45 UTC) #5
dvyukov
https://codereview.appspot.com/35480043/diff/130001/dashboard/app/build/build.go File dashboard/app/build/build.go (right): https://codereview.appspot.com/35480043/diff/130001/dashboard/app/build/build.go#newcode100 dashboard/app/build/build.go:100: Benchmark bool // Needs benchmarking? On 2013/12/04 03:10:40, adg ...
12 years, 5 months ago (2013-12-04 08:30:49 UTC) #6
dvyukov
PTAL
12 years, 5 months ago (2013-12-04 08:32:24 UTC) #7
dvyukov
On 2013/12/04 03:11:45, adg wrote: > Can you add some tests to test.go? Done
12 years, 5 months ago (2013-12-04 11:21:59 UTC) #8
adg
LGTM https://codereview.appspot.com/35480043/diff/180001/dashboard/app/build/test.go File dashboard/app/build/test.go (right): https://codereview.appspot.com/35480043/diff/180001/dashboard/app/build/test.go#newcode229 dashboard/app/build/test.go:229: defer func() { what does this accomplish?
12 years, 5 months ago (2013-12-04 21:51:38 UTC) #9
dvyukov
https://codereview.appspot.com/35480043/diff/180001/dashboard/app/build/test.go File dashboard/app/build/test.go (right): https://codereview.appspot.com/35480043/diff/180001/dashboard/app/build/test.go#newcode229 dashboard/app/build/test.go:229: defer func() { On 2013/12/04 21:51:38, adg wrote: > ...
12 years, 5 months ago (2013-12-05 02:09:45 UTC) #10
adg
On 5 December 2013 13:09, <dvyukov@google.com> wrote: > w/o this it crashes in net/http guts ...
12 years, 5 months ago (2013-12-05 02:21:10 UTC) #11
dvyukov
12 years, 5 months ago (2013-12-05 02:21:20 UTC) #12
*** Submitted as c137fbe89798 ***

dashboard/app: benchmarking support (data model + builder handlers)
Adds new fields PerfBenchmarks and Benchmark to Commit.
Adds new entities -- CommitRun, PerfResult, PerfMetricRun, PerfTodo and
PerfConfig.
Adds new "benchmark-go-commit" todo.
Adds perf-result handler.
The design doc:
https://docs.google.com/a/google.com/document/d/10KInCeTYmpk7UZZLDGNktsisjctQ...

R=adg
CC=golang-dev
https://codereview.appspot.com/35480043
Sign in to reply to this message.

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b