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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 2719533002: predictors: Add RedirectStatus histogram + fix redirects related bug. (Closed)
Patch Set: Created 3 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 eb10ea2c37a9a3939496b572b0547213856d8795..0a0992ccca078de6418b424dea3f46da8df6f945 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -55363,6 +55363,16 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="ResourcePrefetchPredictor.RedirectStatus"
+ enum="ResourcePrefetchPredictorRedirectStatus">
+ <owner>alexilin@chromium.org</owner>
+ <summary>
+ When the prefetch predictor has resources in the local database for a given
+ navigation, records stats about whether redirect was predicted correctly or
+ wrong.
Ilya Sherman 2017/02/24 21:54:47 nit: s/wrong/incorrectly
+ </summary>
+</histogram>
+
<histogram name="ResourcePrefetchPredictor.ReportingEvent"
enum="ResourcePrefetchPredictorReportingEvent">
<owner>alexilin@chromium.org</owner>
@@ -105215,6 +105225,14 @@ value.
<int value="7" label="CONNECTION_BLUETOOTH"/>
</enum>
+<enum name="ResourcePrefetchPredictorRedirectStatus" type="int">
+ <int value="0" label="NO_REDIRECT"/>
+ <int value="1" label="NO_REDIRECT_BUT_PREDICTED"/>
+ <int value="2" label="REDIRECT_NOT_PREDICTED"/>
+ <int value="3" label="REDIRECT_WRONG_PREDICTED"/>
+ <int value="4" label="REDIRECT_CORRECTLY_PREDICTED"/>
+</enum>
+
<enum name="ResourcePrefetchPredictorReportingEvent" type="int">
<int value="0" label="REPORTING_EVENT_ALL_HISTORY_CLEARED"/>
<int value="1" label="REPORTING_EVENT_PARTIAL_HISTORY_CLEARED"/>

Powered by Google App Engine
This is Rietveld 408576698