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

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

Side-by-side diff isn't available for this file because of its large size.
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: Addressed comments 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
« no previous file with comments | « components/data_reduction_proxy/core/browser/data_reduction_proxy_usage_stats_unittest.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 d130d21c84a688be7cf67d56babefed1cace298f..6b4c57e2d2a9e04288647393b7c73852b127c984 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -3808,6 +3808,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>
@@ -16792,6 +16813,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>
@@ -58311,6 +58351,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"/>
« no previous file with comments | « components/data_reduction_proxy/core/browser/data_reduction_proxy_usage_stats_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698