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

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: rm some histograms 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 d8fc24dd8132ed6f866e1d1d61cceb35169a3453..91a3b9adebdb6d574017143d737e4aba408210c7 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -61107,6 +61107,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 the set of
+ in-flight requests is modified by the resource scheduler.
Randy Smith (Not in Mondays) 2017/06/06 17:41:44 I think this comment is out of date? It's not jus
tbansal1 2017/06/06 20:40:05 Done.
+ </summary>
+</histogram>
+
<histogram name="ResourceScheduler.RequestTimeDeferred.Active">
<obsolete>
Deprecated 1/2016
@@ -92753,6 +92770,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 non-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 non-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