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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2873223002: Record resource scheduler UMA (Closed)
Patch Set: rdsmith comment Created 3 years, 6 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 | « content/browser/loader/resource_scheduler_unittest.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 ff60785587c8e63bec2db653eff049d0790744bb..ee8f1584e017bf1babe75f7f45871f854a62e0d2 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -61546,6 +61546,23 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="ResourceScheduler.PeakDelayableRequestsInFlight"
+ units="requests">
+ <owner>tbansal@chromium.org</owner>
+ <summary>
+ Records the highest number of delayable requests that were in-flight when
+ the given request with higher priority was in-flight.
+ </summary>
+</histogram>
+
+<histogram name="ResourceScheduler.RequestsCount" units="requests count">
+ <owner>tbansal@chromium.org</owner>
+ <summary>
+ Records the count of number of requests in-flight. Recorded when a request
+ is started by the resource scheduler.
+ </summary>
+</histogram>
+
<histogram name="ResourceScheduler.RequestTimeDeferred.Active">
<obsolete>
Deprecated 1/2016
@@ -93495,6 +93512,29 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
name="ResourceScheduler.ClientLoadedTime.Other.SwitchedToActive"/>
</histogram_suffixes>
+<histogram_suffixes name="ResourceSchedulerPeakDelayableRequestsInFlight">
+ <suffix name="LayoutBlocking"
+ label="Records the highest number of delayable requests that were
+ in-flight at the same time when a layout blocking request was
+ in-flight. Recorded every time a layout blocking request
+ finishes."/>
+ <suffix name="NonDelayable"
+ label="Records the highest number of delayable requests that were
+ in-flight at the same time when a non-delayable request was
+ in-flight. Recorded every time a non-delayable request finishes."/>
+ <affected-histogram name="ResourceScheduler.PeakDelayableRequestsInFlight"/>
+</histogram_suffixes>
+
+<histogram_suffixes name="ResourceSchedulerRequestsCount">
+ <suffix name="All" label="All requests in-flight were counted."/>
+ <suffix name="Delayable" label="Delayable requests in-flight were counted."/>
+ <suffix name="NonDelayable"
+ label="Non-delayable requests in-flight were counted."/>
+ <suffix name="TotalLayoutBlocking"
+ label="Layout blocking requests in-flight were counted."/>
+ <affected-histogram name="ResourceScheduler.RequestsCount"/>
+</histogram_suffixes>
+
<histogram_suffixes name="ResourceType" separator=".">
<suffix name="MainResource"/>
<suffix name="Image"/>
« no previous file with comments | « content/browser/loader/resource_scheduler_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698