Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(738)

Issue 382313002: Adds tile handler to the perf server (Closed)

Created:
6 years, 5 months ago by kelvinly
Modified:
6 years, 5 months ago
Reviewers:
jcgregorio, benchen
CC:
reviews_skia.org
Base URL:
https://skia.googlesource.com/buildbot.git@master
Visibility:
Public.

Description

Adds tile handler to the perf server BUG=skia: Committed: https://skia.googlesource.com/buildbot/+/ba46b0efb2b5657ef8e82e489a254b0978f15b86

Patch Set 1 #

Total comments: 36

Patch Set 2 : Lots of style fixes #

Patch Set 3 : Fixed warning in handler #

Patch Set 4 : Ignores empty trace strings #

Total comments: 6

Patch Set 5 : More style fixes #

Total comments: 19

Patch Set 6 : More style fixes #

Patch Set 7 : Fixed trace coordinates #

Total comments: 2

Patch Set 8 : Removed comment #

Unified diffs Side-by-side diffs Delta from patch set Stats (+252 lines, -11 lines) Patch
M perf/server/src/config/config.go View 1 2 3 4 5 1 chunk +29 lines, -1 line 0 comments Download
M perf/server/src/filetilestore/filestore.go View 1 chunk +2 lines, -2 lines 0 comments Download
M perf/server/src/server/data.go View 1 4 chunks +8 lines, -8 lines 0 comments Download
M perf/server/src/server/perf.go View 1 2 3 4 5 6 7 7 chunks +187 lines, -0 lines 0 comments Download
M perf/server/src/types/types.go View 1 2 3 4 5 1 chunk +26 lines, -0 lines 0 comments Download

Messages

Total messages: 13 (0 generated)
kelvinly
Running off my machine right now. Caching would be a really nice feature to have ...
6 years, 5 months ago (2014-07-11 17:52:58 UTC) #1
jcgregorio
https://codereview.chromium.org/382313002/diff/1/perf/server/src/config/config.go File perf/server/src/config/config.go (right): https://codereview.chromium.org/382313002/diff/1/perf/server/src/config/config.go#newcode68 perf/server/src/config/config.go:68: HUMAN_READABLE_PARAM_NAMES = make(map[string]string) HUMAN_READABLE_PARAM_NAMES = map[string]string{ "builderName": "Builder name", ...
6 years, 5 months ago (2014-07-11 19:03:56 UTC) #2
kelvinly
https://codereview.chromium.org/382313002/diff/1/perf/server/src/config/config.go File perf/server/src/config/config.go (right): https://codereview.chromium.org/382313002/diff/1/perf/server/src/config/config.go#newcode68 perf/server/src/config/config.go:68: HUMAN_READABLE_PARAM_NAMES = make(map[string]string) On 2014/07/11 19:03:55, jcgregorio wrote: > ...
6 years, 5 months ago (2014-07-11 19:42:30 UTC) #3
jcgregorio
https://codereview.chromium.org/382313002/diff/1/perf/server/src/server/perf.go File perf/server/src/server/perf.go (right): https://codereview.chromium.org/382313002/diff/1/perf/server/src/server/perf.go#newcode51 perf/server/src/server/perf.go:51: tileHandlerPath = regexp.MustCompile(`/tiles/([a-z]*)/([0-9]*)/([-0-9]*)$`) Oh yeah, the regexp package doesn't ...
6 years, 5 months ago (2014-07-11 20:06:57 UTC) #4
kelvinly
https://codereview.chromium.org/382313002/diff/1/perf/server/src/server/perf.go File perf/server/src/server/perf.go (right): https://codereview.chromium.org/382313002/diff/1/perf/server/src/server/perf.go#newcode51 perf/server/src/server/perf.go:51: tileHandlerPath = regexp.MustCompile(`/tiles/([a-z]*)/([0-9]*)/([-0-9]*)$`) On 2014/07/11 20:06:56, jcgregorio wrote: > ...
6 years, 5 months ago (2014-07-11 20:17:11 UTC) #5
jcgregorio
https://codereview.chromium.org/382313002/diff/80001/perf/server/src/config/config.go File perf/server/src/config/config.go (right): https://codereview.chromium.org/382313002/diff/80001/perf/server/src/config/config.go#newcode68 perf/server/src/config/config.go:68: HUMAN_READABLE_PARAM_NAMES = map[string]string{ Sort this list on the first ...
6 years, 5 months ago (2014-07-11 20:36:50 UTC) #6
kelvinly
https://codereview.chromium.org/382313002/diff/80001/perf/server/src/config/config.go File perf/server/src/config/config.go (right): https://codereview.chromium.org/382313002/diff/80001/perf/server/src/config/config.go#newcode68 perf/server/src/config/config.go:68: HUMAN_READABLE_PARAM_NAMES = map[string]string{ On 2014/07/11 20:36:48, jcgregorio wrote: > ...
6 years, 5 months ago (2014-07-11 20:51:59 UTC) #7
kelvinly
Fixed how I had the x and y coordinates in the wrong order
6 years, 5 months ago (2014-07-14 14:44:00 UTC) #8
jcgregorio
LGTM after removing the one comment. https://codereview.chromium.org/382313002/diff/110001/perf/server/src/server/perf.go File perf/server/src/server/perf.go (right): https://codereview.chromium.org/382313002/diff/110001/perf/server/src/server/perf.go#newcode293 perf/server/src/server/perf.go:293: // So this ...
6 years, 5 months ago (2014-07-14 15:23:13 UTC) #9
kelvinly
https://codereview.chromium.org/382313002/diff/110001/perf/server/src/server/perf.go File perf/server/src/server/perf.go (right): https://codereview.chromium.org/382313002/diff/110001/perf/server/src/server/perf.go#newcode293 perf/server/src/server/perf.go:293: // So this almost doubles the size of this ...
6 years, 5 months ago (2014-07-14 15:25:38 UTC) #10
kelvinly
The CQ bit was checked by kelvinly@google.com
6 years, 5 months ago (2014-07-14 15:25:46 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://skia-tree-status.appspot.com/cq/kelvinly@google.com/382313002/130001
6 years, 5 months ago (2014-07-14 15:25:53 UTC) #12
commit-bot: I haz the power
6 years, 5 months ago (2014-07-14 15:26:09 UTC) #13
Message was sent while issue was closed.
Change committed as ba46b0efb2b5657ef8e82e489a254b0978f15b86

Powered by Google App Engine
This is Rietveld 408576698