Chromium Code Reviews| 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"/> |