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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1906523002: cc: Add UMA histogram for the number of render surfaces (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
« cc/trees/layer_tree_host_impl.cc ('K') | « cc/trees/layer_tree_impl.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 37d05ea340390ae72400e703fefb34020bb07dcf..4d249ca16ee6f491c6b0c5db49cfe015ac7cae07 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -5428,6 +5428,23 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Compositing.Browser.NumActiveLayers">
Alexei Svitkine (slow) 2016/04/20 15:40:30 Nit: add units= to all of these.
ajuma 2016/04/20 15:52:10 Done.
+ <owner>paint-dev@chromium.org</owner>
+ <summary>
+ The number of layers in the active tree for each compositor frame. This is
+ logged once per frame, before the frame is drawn (in a browser process).
+ </summary>
+</histogram>
+
+<histogram name="Compositing.Browser.NumRenderSurfaces">
+ <owner>paint-dev@chromium.org</owner>
+ <summary>
+ The number of render surfaces in the render surface layer list. Recorded
+ each time the render surface layer list is constructed (in a browser
+ process).
+ </summary>
+</histogram>
+
<histogram name="Compositing.Browser.PictureMemoryUsageKb" units="KB">
<owner>paint-dev@chromium.org</owner>
<summary>
@@ -5540,6 +5557,10 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</histogram>
<histogram name="Compositing.NumActiveLayers">
+ <obsolete>
+ Deprecated 04/2016, replaced by similar metrics under Compositing.Renderer
+ and Compositing.Browser, depending on which process it occurs in.
+ </obsolete>
<owner>dneto@chromium.org</owner>
<summary>
The number of layers in the active tree for each compositor frame. This is
@@ -5646,6 +5667,23 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Compositing.Renderer.NumActiveLayers">
+ <owner>paint-dev@chromium.org</owner>
+ <summary>
+ The number of layers in the active tree for each compositor frame. This is
+ logged once per frame, before the frame is drawn (in a renderer process).
+ </summary>
+</histogram>
+
+<histogram name="Compositing.Renderer.NumRenderSurfaces">
+ <owner>paint-dev@chromium.org</owner>
+ <summary>
+ The number of render surfaces in the render surface layer list. Recorded
+ each time the render surface layer list is constructed (in a renderer
+ process).
+ </summary>
+</histogram>
+
<histogram name="Compositing.Renderer.PictureMemoryUsageKb" units="KB">
<owner>paint-dev@chromium.org</owner>
<summary>
« cc/trees/layer_tree_host_impl.cc ('K') | « cc/trees/layer_tree_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698