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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 577343002: Adds UMA to measure when the data reduction proxy via header is missing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sync to head Created 6 years, 3 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 f0257e013c070360fcffaa1c503d9b2df5189d8f..f6826f5ddcef913eabbdc1c8b474e0f211e1fec1 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -3573,6 +3573,27 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="DataReductionProxy.MissingViaHeader.Bytes" units="bytes">
+ <owner>bengr@chromium.org</owner>
+ <owner>sclittle@chromium.org</owner>
+ <summary>
+ Counts the response bytes of responses that Chrome expected to come through
+ a data reduction proxy and have the data reduction proxy via header, but
+ where the data reduction proxy via header was missing. Note that this does
+ not include responses that were bypassed.
+ </summary>
+</histogram>
+
+<histogram name="DataReductionProxy.MissingViaHeader.ResponseCode">
+ <owner>bengr@chromium.org</owner>
+ <owner>sclittle@chromium.org</owner>
+ <summary>
+ Counts the different HTTP response codes of responses that Chrome expected
+ to come through a data reduction proxy and have the data reduction proxy via
+ header, but where the data reduction proxy via header was missing.
+ </summary>
+</histogram>
+
<histogram name="DataReductionProxy.NetworkChangeEvents"
enum="DataReductionProxyNetworkChangeEvent">
<owner>bengr@chromium.org</owner>
@@ -53096,6 +53117,20 @@ To add a new entry, add it with any value and run test to compute valid value.
<affected-histogram name="DataReductionProxy.BypassedBytes"/>
</histogram_suffixes>
+<histogram_suffixes name="DataReductionProxyMissingViaHeaderBytes"
+ separator=".">
+ <suffix name="4xx" label="Response with 4xx response code"/>
+ <suffix name="Other" label="Other response"/>
+ <affected-histogram name="DataReductionProxy.MissingViaHeader.Bytes"/>
+</histogram_suffixes>
+
+<histogram_suffixes name="DataReductionProxyMissingViaHeaderResponseCode"
+ separator=".">
+ <suffix name="Primary" label="Primary data reduction proxy"/>
+ <suffix name="Fallback" label="Fallback data reduction proxy"/>
+ <affected-histogram name="DataReductionProxy.MissingViaHeader.ResponseCode"/>
+</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