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

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

Issue 362803002: Track UMA stats for running out of tile memory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Corrected histogram as per comments Created 6 years, 5 months 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
« no previous file with comments | « cc/resources/tile_manager.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 1374c6a8e1b185e623e53d97f74f13ca3128b708..165e44768334ed14473c3b7087dab5b956047708 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -32195,6 +32195,15 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="TileManager.ExceededMemoryBudget" enum="TileMemoryBudget">
+ <owner>reveman@chromium.org</owner>
+ <owner>vmpstr@chromium.org</owner>
+ <summary>
+ Measures whether the tile manager exceeded the hard GPU memory budget
+ (OOMed). Recorded each time the tile manager assigns GPU memory to tiles.
+ </summary>
+</histogram>
+
<histogram name="TimeZone.TimeZoneRequest.Event" enum="TimeZoneRequestEvent">
<summary>Events in TimeZoneRequest.</summary>
</histogram>
@@ -47280,6 +47289,11 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="9" label="No syn data + probe failed"/>
</enum>
+<enum name="TileMemoryBudget" type="int">
+ <int value="0" label="Within memory budget"/>
+ <int value="1" label="Exceeded memory budget"/>
+</enum>
+
<enum name="TimeZoneRequestEvent" type="int">
<int value="0" label="Request start"/>
<int value="1" label="Response success"/>
« no previous file with comments | « cc/resources/tile_manager.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698