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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 782903002: Breakdown ClientLoadedTime histograms into buckets based on number of clients. Fix RequestTimeThrot… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 11 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.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 857b1ac841df0d3d5e2ef40296891ac068ecb45a..e5ae1c31b635bf9c0fdde8b3422752f0448ff97a 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -29665,7 +29665,7 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
-<histogram name="ResourceScheduler.RequestTimeThrottled_Active">
+<histogram name="ResourceScheduler.RequestTimeThrottled.Active">
<owner>aiolos@chromium.org</owner>
<summary>
The amount of time between when the request was created and when the
@@ -29674,7 +29674,7 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
-<histogram name="ResourceScheduler.RequestTimeThrottled_Background">
+<histogram name="ResourceScheduler.RequestTimeThrottled.Background">
<owner>aiolos@chromium.org</owner>
<summary>
The amount of time between when the request was created and when the
@@ -29683,7 +29683,7 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
-<histogram name="ResourceScheduler.RequestTimeThrottled_Other">
+<histogram name="ResourceScheduler.RequestTimeThrottled.Other">
<owner>aiolos@chromium.org</owner>
<summary>
The amount of time between when the request was created and when the
@@ -61987,6 +61987,23 @@ To add a new entry, add it with any value and run test to compute valid value.
name="ResourcePrefetchPredictor.Url.PredictedPrefetchMisses"/>
</histogram_suffixes>
+<histogram_suffixes name="ResourceSchedulerClientBreakDown">
+ <suffix name="1Client" label="One Client in the ResourceScheduler."/>
+ <suffix name="Max5Clients"
+ label="Two to five Clients in the ResourceScheduler."/>
+ <suffix name="Max15Clients"
+ label="Six to fifteen Clients in the ResourceScheduler."/>
+ <suffix name="Max30Clients"
+ label="Sixteen to thirty Clients in the ResourceScheduler."/>
+ <suffix name="Over30Clients"
+ label="Over thirty Clients in the ResourceScheduler."/>
+ <affected-histogram name="ResourceScheduler.ClientLoadedTime.Active"/>
+ <affected-histogram name="ResourceScheduler.ClientLoadedTime.Background"/>
+ <affected-histogram name="ResourceScheduler.ClientLoadedTime.Other"/>
+ <affected-histogram
+ name="ResourceScheduler.ClientLoadedTime.Other.SwitchedToActive"/>
+</histogram_suffixes>
+
<histogram_suffixes name="SafeBrowsingLists" separator=".">
<suffix name="Browse" label="Browse"/>
<suffix name="Download" label="Download"/>
« no previous file with comments | « content/browser/loader/resource_scheduler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698