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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1797313003: Add a histogram (Net.PacResultForStrippedUrl) that estimates how often PAC scripts depend on the UR… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address cbentzel feedback Created 4 years, 9 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
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 60140b3367e41a614910052a1d7bdff63781a7fb..9057bb98e6168836735be94189222f50cfa1396a 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -26072,6 +26072,17 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Net.PacResultForStrippedUrl" enum="PacResultForStrippedUrl">
+ <owner>eroman@chromium.org</owner>
+ <summary>
+ Estimates the impact of PAC script results when the URL path and parameters
Mark P 2016/03/18 21:34:50 Histogram descriptions should clearly explain when
eroman 2016/03/18 23:15:16 Thanks for the feedback. Here is my new and improv
+ are elided, by running the PAC script a second time with a fixed path.
+
+ This is only measured for https:// and wss:// URL schemes in order to gather
+ data for crbug.com/593759.
+ </summary>
+</histogram>
+
<histogram name="Net.Ping_ResponseStartedTime" units="ms">
<obsolete>
Deprecated 4/16/2014. No longer tracked.
@@ -76131,6 +76142,21 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="4" label="Index"/>
</enum>
+<enum name="PacResultForStrippedUrl" type="int">
+ <summary>
+ Result for PAC script experiment as defined in
+ net/proxy/proxy_resolver_v8_tracing.h
+ </summary>
+ <int value="0" label="SKIPPED_FALLBACK_BLOCKING_DNS"/>
+ <int value="1" label="SUCCESS"/>
+ <int value="2" label="SUCCESS_DIFFERENT_ALERTS"/>
+ <int value="3" label="SUCCESS_DIFFERENT_NUM_DNS"/>
+ <int value="4" label="FAIL_ABANDONED"/>
+ <int value="5" label="FAIL_FALLBACK_BLOCKING_DNS"/>
+ <int value="6" label="FAIL_ERROR"/>
+ <int value="7" label="FAIL_DIFFERENT_PROXY_LIST"/>
+</enum>
+
<enum name="PageLoadEvent" type="int">
<obsolete>
Deprecated in favor of {Committed|Provisional|InternalError}LoadEvent
« net/proxy/proxy_resolver_v8_tracing.cc ('K') | « net/proxy/proxy_resolver_v8_tracing_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698