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

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

Issue 784253002: Measure network error rates with and without data reduction proxy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 84859fed502f94effaf0f3cf20a853d5d8b72226..9eaeb022748415811b1ba58d38b47f1bf038b7f8 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -3802,6 +3802,27 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="DataReductionProxy.RequestCompletionErrorCodes"
+ enum="NetErrorCodes">
+ <owner>sclittle@chromium.org</owner>
+ <owner>bengr@chromium.org</owner>
+ <summary>
+ Reports the different network errors that requests that try to use the data
+ reduction proxy are completing with, including OK and ABORTED.
+ </summary>
+</histogram>
+
+<histogram name="DataReductionProxy.RequestCompletionErrorCodes.MainFrame"
+ enum="NetErrorCodes">
+ <owner>sclittle@chromium.org</owner>
+ <owner>bengr@chromium.org</owner>
+ <summary>
+ Reports the different network errors that main frame resource requests that
+ try to use the data reduction proxy are completing with, including OK and
+ ABORTED.
+ </summary>
+</histogram>
+
<histogram name="DataReductionProxy.SettingsConversion"
enum="DataReductionProxySettingsConversion">
<owner>bengr@chromium.org</owner>
@@ -16755,6 +16776,25 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<summary>Time it takes to request a new (unused) HTTP proxy socket.</summary>
</histogram>
+<histogram name="Net.HttpRequestCompletionErrorCodes" enum="NetErrorCodes">
+ <owner>sclittle@chromium.org</owner>
+ <owner>bengr@chromium.org</owner>
+ <summary>
+ The network error code that the HTTP request completes with, including OK
+ and ABORTED.
+ </summary>
+</histogram>
+
+<histogram name="Net.HttpRequestCompletionErrorCodes.MainFrame"
+ enum="NetErrorCodes">
+ <owner>sclittle@chromium.org</owner>
+ <owner>bengr@chromium.org</owner>
+ <summary>
+ The network error code that the HTTP main frame resource request completes
+ with, including OK and ABORTED.
+ </summary>
+</histogram>
+
<histogram name="Net.HttpResponseCode">
<owner>mmenke@chromium.org</owner>
<summary>The count of HTTP Response codes encountered.</summary>
@@ -57977,6 +58017,21 @@ To add a new entry, add it with any value and run test to compute valid value.
<affected-histogram name="DataReductionProxy.MissingViaHeader.ResponseCode"/>
</histogram_suffixes>
+<histogram_suffixes name="DataReductionProxyRequestCompletionErrorCodes"
+ separator=".">
+ <suffix name="Primary" label="Primary data reduction proxy"/>
+ <suffix name="Fallback" label="Fallback data reduction proxy"/>
+ <affected-histogram name="DataReductionProxy.RequestCompletionErrorCodes"/>
+</histogram_suffixes>
+
+<histogram_suffixes
+ name="DataReductionProxyRequestCompletionErrorCodesMainFrame" separator=".">
+ <suffix name="Primary" label="Primary data reduction proxy"/>
+ <suffix name="Fallback" label="Fallback data reduction proxy"/>
+ <affected-histogram
+ name="DataReductionProxy.RequestCompletionErrorCodes.MainFrame"/>
+</histogram_suffixes>
+
<histogram_suffixes name="DefaultAppsExperiment">
<suffix name="NoDefaultApps" label="User's without default apps installed"/>
<suffix name="WithDefaultApps" label="User's with default apps installed"/>

Powered by Google App Engine
This is Rietveld 408576698