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

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

Issue 390533003: Bypassed Bytes UMAs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moving #if defined(SPDY_PROXY_AUTH_ORIGIN) Created 6 years, 5 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 6e61273d96e5083b4765a7c811d92fe1e63ceada..fef83cd1a48e3add251605b977f3d00cc4d9c7e0 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -3084,6 +3084,14 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="DataReductionProxy.BypassedBytes" units="bytes">
+ <owner>bengr@chromium.org</owner>
+ <summary>
+ Counts the response bytes that did not go through the data reduction proxy
+ as the result of a bypass event.
+ </summary>
+</histogram>
+
<histogram name="DataReductionProxy.BypassInfoFallback"
enum="DataReductionProxyBypassEventType_Deprecated">
<obsolete>
@@ -48801,6 +48809,43 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<affected-histogram name="PLT.PT_StartToFinish"/>
</histogram_suffixes>
+<histogram_suffixes name="DataReductionProxyBypassedBytes" separator=".">
+ <suffix name="NotBypassed" label="Not bypassed"/>
+ <suffix name="SSL" label="Bypass due to SSL"/>
+ <suffix name="LocalBypassRules"
+ label="Bypass due to client-side bypass rules"/>
+ <suffix name="Current" label="Bypass due to explicit instruction"/>
+ <suffix name="ShortAll" label="Short bypass"/>
+ <suffix name="ShortTriggeringRequest"
+ label="Triggering request short bypass"/>
+ <suffix name="ShortAudioVideo"
+ label="Audio/Video bypass due to short bypass"/>
+ <suffix name="MediumAll" label="Medium bypass"/>
+ <suffix name="MediumTriggeringRequest"
+ label="Triggering request medium bypass"/>
+ <suffix name="LongAll" label="Long bypass"/>
+ <suffix name="LongTriggering_Request" label="Triggering request long bypass"/>
+ <suffix name="MissingViaHeader4xx"
+ label="Bypass due to a 4xx missing via header"/>
+ <suffix name="MissingViaHeaderOther"
+ label="Bypass due to other missing via header"/>
+ <suffix name="Malformed407"
+ label="Bypass due to 407 response from proxy without a challenge"/>
+ <suffix name="Status500HttpInternalServerError"
+ label="Bypass due to internal server error"/>
+ <suffix name="Status502HttpBadGateway"
+ label="Bypass because the request URI was too long"/>
+ <suffix name="Status503HttpServiceUnavailable"
+ label="Bypass due to a 503 response"/>
+ <suffix name="NetworkErrorTimedOut" label="Bypass due to network timeout"/>
+ <suffix name="NetworkErrorProxyConnectionFailed"
+ label="Bypass due to failed proxy connection"/>
+ <suffix name="NetworkErrorProxyCertificateInvalid"
+ label="Bypass due to invalid proxy certificate"/>
+ <suffix name="NetworkErrorOther" label="Bypass due to any network error"/>
+ <affected-histogram name="DataReductionProxy.BypassedBytes"/>
+</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