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

Issue 11576050: [Telemetry] Add memory and IO stats to page cycler (Closed)

Created:
8 years ago by tonyg
Modified:
7 years, 9 months ago
Reviewers:
dtu, nduca
CC:
chromium-reviews, chrome-speed-team+watch_google.com, pam+watch_chromium.org, telemetry+watch_chromium.org
Visibility:
Public.

Description

[Telemetry] Add memory and IO stats to page cycler This matches the existing page_cycler behavior exactly. Also, only display by_url results when there are at least 2 pages in the page_set. This prevents duplicate results for single page sets. BUG=163680 TEST=tools/perf/run_multipage_benchmarks --browser=system page_cycler tools/perf/page_sets/page_cycler/moz.json NOTRY=True Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=186219

Patch Set 1 #

Total comments: 1

Patch Set 2 : Remove pid from Browser interface #

Patch Set 3 : Fix lint errors and add docstrings #

Patch Set 4 : Add mac platform #

Patch Set 5 : Restore linux platform #

Patch Set 6 : Add win platform #

Patch Set 7 : Fix imports #

Patch Set 8 : Add android platform #

Total comments: 1

Patch Set 9 : Add cros support/fix return->raise issue #

Patch Set 10 : Hide pid from platform interface #

Patch Set 11 : Add abstract base platform_backend #

Total comments: 5

Patch Set 12 : #

Patch Set 13 : Address dtu nits #

Unified diffs Side-by-side diffs Delta from patch set Stats (+589 lines, -42 lines) Patch
M tools/perf/perf_tools/page_cycler.py View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +115 lines, -1 line 0 comments Download
M tools/telemetry/telemetry/core/browser.py View 1 2 3 4 5 6 7 8 9 4 chunks +68 lines, -2 lines 0 comments Download
M tools/telemetry/telemetry/core/chrome/android_browser_backend.py View 1 2 3 4 5 6 7 1 chunk +4 lines, -0 lines 0 comments Download
M tools/telemetry/telemetry/core/chrome/android_browser_finder.py View 1 2 3 4 5 6 7 8 9 2 chunks +1 line, -2 lines 0 comments Download
M tools/telemetry/telemetry/core/chrome/android_platform_backend.py View 1 2 3 4 5 6 7 8 9 10 3 chunks +35 lines, -1 line 0 comments Download
M tools/telemetry/telemetry/core/chrome/cros_browser_backend.py View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +8 lines, -4 lines 0 comments Download
M tools/telemetry/telemetry/core/chrome/cros_browser_finder.py View 1 2 3 4 5 6 7 8 2 chunks +3 lines, -2 lines 0 comments Download
M tools/telemetry/telemetry/core/chrome/cros_interface.py View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -1 line 0 comments Download
A tools/telemetry/telemetry/core/chrome/cros_platform_backend.py View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +74 lines, -0 lines 0 comments Download
M tools/telemetry/telemetry/core/chrome/desktop_browser_backend.py View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +6 lines, -0 lines 0 comments Download
M tools/telemetry/telemetry/core/chrome/desktop_browser_finder.py View 1 2 3 4 5 6 7 8 9 2 chunks +12 lines, -2 lines 0 comments Download
A tools/telemetry/telemetry/core/chrome/linux_platform_backend.py View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +71 lines, -0 lines 0 comments Download
A tools/telemetry/telemetry/core/chrome/mac_platform_backend.py View 1 2 3 4 5 6 7 8 9 10 1 chunk +57 lines, -0 lines 0 comments Download
M tools/telemetry/telemetry/core/chrome/platform.py View 1 2 3 4 5 6 7 8 9 1 chunk +0 lines, -26 lines 0 comments Download
A tools/telemetry/telemetry/core/chrome/platform_backend.py View 1 2 3 4 5 6 7 8 9 10 1 chunk +38 lines, -0 lines 0 comments Download
A tools/telemetry/telemetry/core/chrome/win_platform_backend.py View 1 2 3 4 5 6 7 8 9 10 1 chunk +95 lines, -0 lines 0 comments Download
M tools/telemetry/telemetry/page/page_benchmark_results.py View 1 2 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 23 (0 generated)
tonyg
ptal
8 years ago (2012-12-15 02:35:32 UTC) #1
nduca
https://codereview.chromium.org/11576050/diff/1/tools/telemetry/telemetry/platform.py File tools/telemetry/telemetry/platform.py (right): https://codereview.chromium.org/11576050/diff/1/tools/telemetry/telemetry/platform.py#newcode23 tools/telemetry/telemetry/platform.py:23: I wonder if this should be exposed via devtools ...
8 years ago (2012-12-15 05:45:31 UTC) #2
tonyg
On 2012/12/15 05:45:31, nduca wrote: > https://codereview.chromium.org/11576050/diff/1/tools/telemetry/telemetry/platform.py > File tools/telemetry/telemetry/platform.py (right): > > https://codereview.chromium.org/11576050/diff/1/tools/telemetry/telemetry/platform.py#newcode23 > ...
8 years ago (2012-12-17 18:16:15 UTC) #3
nduca
Two things here.... Wrt py vs c++, Its not strictly copied. You're using something new ...
8 years ago (2012-12-17 20:21:00 UTC) #4
nduca
Recapping, I changed my mind about using python to gather metrics being a bad thing. ...
7 years, 11 months ago (2013-01-08 05:12:50 UTC) #5
tonyg
All comments addressed. @dtu, would you mind taking a look at this while nduca is ...
7 years, 9 months ago (2013-02-27 23:02:56 UTC) #6
dtu
I know nduca would have some things to say about this... For example, he was ...
7 years, 9 months ago (2013-03-01 00:57:30 UTC) #7
dtu
On 2013/03/01 00:57:30, Dave Tu wrote: > I know nduca would have some things to ...
7 years, 9 months ago (2013-03-01 01:07:26 UTC) #8
tonyg
On 2013/03/01 01:07:26, Dave Tu wrote: > On 2013/03/01 00:57:30, Dave Tu wrote: > > ...
7 years, 9 months ago (2013-03-01 01:20:24 UTC) #9
tonyg
On 2013/03/01 01:20:24, tonyg wrote: > On 2013/03/01 01:07:26, Dave Tu wrote: > > On ...
7 years, 9 months ago (2013-03-01 01:21:32 UTC) #10
dtu
On 2013/03/01 01:21:32, tonyg wrote: > On 2013/03/01 01:20:24, tonyg wrote: > > On 2013/03/01 ...
7 years, 9 months ago (2013-03-01 02:35:14 UTC) #11
tonyg
> The problem is that the pids are still not hidden, because Platform is also ...
7 years, 9 months ago (2013-03-01 19:44:59 UTC) #12
dtu
On 2013/03/01 19:44:59, tonyg wrote: > Excellent point. I reworked things so that the new ...
7 years, 9 months ago (2013-03-01 22:36:09 UTC) #13
tonyg
> Now we need an abstract base class > platform_backend.py that ensures the methods are ...
7 years, 9 months ago (2013-03-01 23:02:15 UTC) #14
dtu
Cool! Just nits. lgtm. https://codereview.chromium.org/11576050/diff/34002/tools/perf/perf_tools/page_cycler.py File tools/perf/perf_tools/page_cycler.py (right): https://codereview.chromium.org/11576050/diff/34002/tools/perf/perf_tools/page_cycler.py#newcode29 tools/perf/perf_tools/page_cycler.py:29: if memory['Browser'].has_key('VM'): if 'VM' in ...
7 years, 9 months ago (2013-03-04 23:26:15 UTC) #15
tonyg
Thanks for the review! All comments addressed.
7 years, 9 months ago (2013-03-04 23:40:56 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/tonyg@chromium.org/11576050/28003
7 years, 9 months ago (2013-03-04 23:41:21 UTC) #17
commit-bot: I haz the power
Retried try job too often on mac_rel for step(s) interactive_ui_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=mac_rel&number=105037
7 years, 9 months ago (2013-03-05 02:43:14 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/tonyg@chromium.org/11576050/28003
7 years, 9 months ago (2013-03-05 17:27:36 UTC) #19
commit-bot: I haz the power
Commit queue rejected this change because the description was changed between the time the change ...
7 years, 9 months ago (2013-03-05 18:53:59 UTC) #20
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/tonyg@chromium.org/11576050/28003
7 years, 9 months ago (2013-03-05 19:07:16 UTC) #21
commit-bot: I haz the power
Change committed as 186219
7 years, 9 months ago (2013-03-05 19:08:47 UTC) #22
nduca
7 years, 9 months ago (2013-03-08 06:30:02 UTC) #23
Message was sent while issue was closed.
Love this, btw.

Powered by Google App Engine
This is Rietveld 408576698