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

Issue 367523002: Handle multiple duplicate timeline interaction records. (Closed)

Created:
6 years, 5 months ago by ariblue
Modified:
6 years, 5 months ago
CC:
chromium-reviews, telemetry+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Project:
chromium
Visibility:
Public.

Description

Handle multiple duplicate timeline interaction records. BUG= Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=282739

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : add tests #

Patch Set 4 : #

Total comments: 10

Patch Set 5 : address comments #

Patch Set 6 : ensure repeatable records are identical #

Total comments: 16

Patch Set 7 : address comments #

Patch Set 8 : change is_repeatable to repeatable #

Patch Set 9 : update doc #

Patch Set 10 : update unittests #

Unified diffs Side-by-side diffs Delta from patch set Stats (+217 lines, -119 lines) Patch
M tools/telemetry/telemetry/page/actions/action_runner.py View 1 2 3 4 5 6 7 8 3 chunks +14 lines, -4 lines 0 comments Download
M tools/telemetry/telemetry/web_perf/timeline_based_measurement.py View 1 2 3 4 5 6 7 8 9 5 chunks +59 lines, -33 lines 0 comments Download
M tools/telemetry/telemetry/web_perf/timeline_based_measurement_unittest.py View 1 2 3 4 5 6 7 8 9 1 chunk +116 lines, -67 lines 0 comments Download
M tools/telemetry/telemetry/web_perf/timeline_interaction_record.py View 1 2 3 4 5 6 7 6 chunks +28 lines, -15 lines 0 comments Download

Messages

Total messages: 23 (0 generated)
ariblue
Here's a take at handling multiple duplicate timeline interaction records. This does the following: (1) ...
6 years, 5 months ago (2014-07-01 23:55:18 UTC) #1
nednguyen
On 2014/07/01 23:55:18, ariblue wrote: > Here's a take at handling multiple duplicate timeline interaction ...
6 years, 5 months ago (2014-07-02 07:14:27 UTC) #2
nduca
> What do you guys think about this? I think we're overthinking. is_repeatable as just ...
6 years, 5 months ago (2014-07-07 16:55:55 UTC) #3
nduca
i'd suggest throwing out 2 or 3 alternate names than is_repeatable that don't begin with ...
6 years, 5 months ago (2014-07-07 16:59:16 UTC) #4
nduca
please coordinate with https://codereview.chromium.org/367283002 which has repeats in it. one of you should agree [maybe ...
6 years, 5 months ago (2014-07-07 17:20:51 UTC) #5
nednguyen
https://codereview.chromium.org/367523002/diff/80001/tools/telemetry/telemetry/page/actions/action_runner.py File tools/telemetry/telemetry/page/actions/action_runner.py (right): https://codereview.chromium.org/367523002/diff/80001/tools/telemetry/telemetry/page/actions/action_runner.py#newcode49 tools/telemetry/telemetry/page/actions/action_runner.py:49: this interaction. Update doc for new flag here also. ...
6 years, 5 months ago (2014-07-07 17:39:03 UTC) #6
nednguyen
On 2014/07/07 17:20:51, nduca wrote: > please coordinate with https://codereview.chromium.org/367283002 which has > repeats in ...
6 years, 5 months ago (2014-07-07 18:29:12 UTC) #7
ariblue
On 2014/07/07 16:59:16, nduca wrote: > i'd suggest throwing out 2 or 3 alternate names ...
6 years, 5 months ago (2014-07-08 03:15:40 UTC) #8
wiltzius
On 2014/07/07 18:29:12, nednguyen wrote: > On 2014/07/07 17:20:51, nduca wrote: > > please coordinate ...
6 years, 5 months ago (2014-07-08 05:09:07 UTC) #9
nednguyen
lgtm LGTM after making sure that repeatable records must be identical.
6 years, 5 months ago (2014-07-08 18:13:21 UTC) #10
nednguyen
https://codereview.chromium.org/367523002/diff/120001/tools/telemetry/telemetry/web_perf/timeline_based_measurement.py File tools/telemetry/telemetry/web_perf/timeline_based_measurement.py (right): https://codereview.chromium.org/367523002/diff/120001/tools/telemetry/telemetry/web_perf/timeline_based_measurement.py#newcode54 tools/telemetry/telemetry/web_perf/timeline_based_measurement.py:54: return '%s-%s-%s' % (metric_type, self._result_prefix, trace_name) The results wrapper ...
6 years, 5 months ago (2014-07-09 20:13:06 UTC) #11
chrishenry
https://codereview.chromium.org/367523002/diff/120001/tools/telemetry/telemetry/page/actions/action_runner.py File tools/telemetry/telemetry/page/actions/action_runner.py (right): https://codereview.chromium.org/367523002/diff/120001/tools/telemetry/telemetry/page/actions/action_runner.py#newcode44 tools/telemetry/telemetry/page/actions/action_runner.py:44: as this interaction. Is it just the logical name ...
6 years, 5 months ago (2014-07-09 20:52:14 UTC) #12
nednguyen
https://codereview.chromium.org/367523002/diff/120001/tools/telemetry/telemetry/web_perf/timeline_based_measurement.py File tools/telemetry/telemetry/web_perf/timeline_based_measurement.py (right): https://codereview.chromium.org/367523002/diff/120001/tools/telemetry/telemetry/web_perf/timeline_based_measurement.py#newcode46 tools/telemetry/telemetry/web_perf/timeline_based_measurement.py:46: class _ResultsWrapper(object): On 2014/07/09 20:52:14, chrishenry wrote: > Is ...
6 years, 5 months ago (2014-07-09 21:27:50 UTC) #13
ariblue
https://codereview.chromium.org/367523002/diff/120001/tools/telemetry/telemetry/page/actions/action_runner.py File tools/telemetry/telemetry/page/actions/action_runner.py (right): https://codereview.chromium.org/367523002/diff/120001/tools/telemetry/telemetry/page/actions/action_runner.py#newcode44 tools/telemetry/telemetry/page/actions/action_runner.py:44: as this interaction. On 2014/07/09 20:52:14, chrishenry wrote: > ...
6 years, 5 months ago (2014-07-10 00:35:10 UTC) #14
chrishenry
lgtm https://codereview.chromium.org/367523002/diff/120001/tools/telemetry/telemetry/page/actions/action_runner.py File tools/telemetry/telemetry/page/actions/action_runner.py (right): https://codereview.chromium.org/367523002/diff/120001/tools/telemetry/telemetry/page/actions/action_runner.py#newcode44 tools/telemetry/telemetry/page/actions/action_runner.py:44: as this interaction. On 2014/07/10 00:35:09, ariblue wrote: ...
6 years, 5 months ago (2014-07-10 17:10:38 UTC) #15
ariblue
The CQ bit was checked by ariblue@google.com
6 years, 5 months ago (2014-07-11 01:39:36 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/ariblue@google.com/367523002/180001
6 years, 5 months ago (2014-07-11 01:41:20 UTC) #17
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: linux_chromium_rel on tryserver.chromium ...
6 years, 5 months ago (2014-07-11 04:23:09 UTC) #18
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 5 months ago (2014-07-11 04:48:29 UTC) #19
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_rel on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/linux_chromium_rel/builds/50570) mac_chromium_rel on tryserver.chromium (http://build.chromium.org/p/tryserver.chromium/builders/mac_chromium_rel/builds/48037)
6 years, 5 months ago (2014-07-11 04:48:30 UTC) #20
ariblue
The CQ bit was checked by ariblue@google.com
6 years, 5 months ago (2014-07-11 21:09:37 UTC) #21
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/ariblue@google.com/367523002/200001
6 years, 5 months ago (2014-07-11 21:12:00 UTC) #22
commit-bot: I haz the power
6 years, 5 months ago (2014-07-11 23:50:20 UTC) #23
Message was sent while issue was closed.
Change committed as 282739

Powered by Google App Engine
This is Rietveld 408576698