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

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

Issue 2824313002: Split JobController count histograms into three separate histograms: (Closed)
Patch Set: remove redundant DCHECKs Created 3 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
« no previous file with comments | « net/http/http_stream_factory_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 52f9a6bfe21b4cb28d55fca4f5483e2b27f2ead8..5dfc77e2cf4e31fb87c74ee4051596ae49720862 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -34968,6 +34968,35 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram
+ name="Net.JobControllerSet.CountOfJobController.NonPreconnect.PendingRequest"
+ units="job_controllers">
+ <owner>zhongyi@chromium.org</owner>
+ <summary>
+ This counts number of JobControllers that are still alive, not created for
+ preconnect, and still have a HttpStreamFactoryImpl::Request pending.
+ </summary>
+</histogram>
+
+<histogram
+ name="Net.JobControllerSet.CountOfJobController.NonPreconnect.RequestGone"
+ units="job_controllers">
+ <owner>zhongyi@chromium.org</owner>
+ <summary>
+ This counts number of job controllers that are still alive, not created for
+ preconnect but HttpStreamFactoryImpl::Request has completed.
+ </summary>
+</histogram>
+
+<histogram name="Net.JobControllerSet.CountOfJobController.Preconnect"
+ units="job_controllers">
+ <owner>zhongyi@chromium.org</owner>
+ <summary>
+ This counts number of job controllers which are used for preconnect and are
+ still alive.
+ </summary>
+</histogram>
+
<histogram name="Net.JobControllerSet.CountOfJobControllerAtShutDown"
units="job_controllers">
<owner>zhongyi@chromium.org</owner>
@@ -34991,6 +35020,10 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</histogram>
<histogram name="Net.JobControllerSet.CountOfPendingRequest" units="requests">
+ <obsolete>
+ Deprecated 04/2017, replaced by
+ Net.JobController.CountOfJobController.NonPreconnect.PendingRequest.
+ </obsolete>
<owner>zhongyi@chromium.org</owner>
<summary>
This counts number of HttpStreamFactoryImpl::Request which are still alive.
@@ -34999,6 +35032,10 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<histogram name="Net.JobControllerSet.CountOfPreconnect"
units="job_controllers">
+ <obsolete>
+ Deprecated 04/2017, replaced by
+ Net.JobController.CountOfJobController.Preconnect.
+ </obsolete>
<owner>zhongyi@chromium.org</owner>
<summary>
This counts number of job controllers which are used for preconnect and are
« no previous file with comments | « net/http/http_stream_factory_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698