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

Unified Diff: tools/metrics/histograms/histograms.xml

Side-by-side diff isn't available for this file because of its large size.
Issue 1374283003: Reporting top cpu and memory consumers via rappor on chromeos (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: browser/gpu stats by UMA histograms, buckets for cpu cores. Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index e347fb307926ed5329e3a740d2581220bc3ddf9a..3dad36fe9b4ffb96b11f076e45d9e94f2d917bab 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -38529,6 +38529,42 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="ResourceReporter.BrowserProcess.CpuUsage"
+ enum="ResourceReporterCpuUsage">
+ <owner>afakhry@chromium.org</owner>
+ <summary>
+ The cpu usage rage reported for the browser process when the system is under
+ moderate memory pressure or higher.
+ </summary>
+</histogram>
+
+<histogram name="ResourceReporter.BrowserProcess.MemoryUsage"
+ enum="ResourceReporterMemoryUsage">
+ <owner>afakhry@chromium.org</owner>
+ <summary>
+ The memory usage range reported for the browser process when the system is
+ under moderate memory pressure or higher.
+ </summary>
+</histogram>
+
+<histogram name="ResourceReporter.GpuProcess.CpuUsage"
+ enum="ResourceReporterCpuUsage">
+ <owner>afakhry@chromium.org</owner>
+ <summary>
+ The cpu usage rage reported for the GPU process when the system is under
+ moderate memory pressure or higher.
+ </summary>
+</histogram>
+
+<histogram name="ResourceReporter.GpuProcess.MemoryUsage"
+ enum="ResourceReporterMemoryUsage">
+ <owner>afakhry@chromium.org</owner>
+ <summary>
+ The memory usage range reported for the GPU process when the system is under
+ moderate memory pressure or higher.
+ </summary>
+</histogram>
+
<histogram name="ResourceScheduler.ClientLoadedTime.Active">
<owner>aiolos@chromium.org</owner>
<summary>
@@ -71490,6 +71526,22 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="64" label="RESOURCE_STATUS_HEADERS_MISSING"/>
</enum>
+<enum name="ResourceReporterCpuUsage" type="int">
+ <int value="0" label="RANGE_0_TO_10_PERCENT"/>
+ <int value="1" label="RANGE_10_TO_30_PERCENT"/>
+ <int value="2" label="RANGE_30_TO_60_PERCENT"/>
+ <int value="3" label="RANGE_ABOVE_60_PERCENT"/>
+</enum>
+
+<enum name="ResourceReporterMemoryUsage" type="int">
+ <int value="0" label="RANGE_0_TO_200_MB"/>
+ <int value="1" label="RANGE_200_TO_400_MB"/>
+ <int value="2" label="RANGE_400_TO_600_MB"/>
+ <int value="3" label="RANGE_600_TO_800_MB"/>
+ <int value="4" label="RANGE_800_TO_1_GB"/>
+ <int value="5" label="RANGE_ABOVE_1_GB"/>
+</enum>
+
<enum name="ResourceType" type="int">
<int value="0" label="Main resource"/>
<int value="1" label="Image"/>

Powered by Google App Engine
This is Rietveld 408576698