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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 16514008: Add metrics for calculating precision/recall of link navigation pre-connect triggers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove PRERENDER flag change Created 7 years, 4 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
« no previous file with comments | « chrome/chrome_browser.gypi ('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 eb78f75ded1608ca39a4d22b06be2b002991d704..31697fe0d6a1ffdd9e4da61912d7b3abbd578d77 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -6657,11 +6657,19 @@ other types of suffix sets.
</summary>
</histogram>
+<histogram name="Net.PreconnectedLinkNavigation" enum="PreconnectedNavigation">
+ <summary>
+ Indicate whether a link navigation was preceded by a recent pre-connect
+ trigger (within 10 seconds). There is a high chance that loading the page
+ used a preconnected TCP session.
+ </summary>
+</histogram>
+
<histogram name="Net.PreconnectedNavigation" enum="PreconnectedNavigation">
<summary>
- Indicate whether the navigation was preceded by a recent pre-connect
- (pre-connect within 10 seconds). There is a high chance that loading the
- page used a preconnected TCP session.
+ Indicate whether a URLRequest was preceded by a recent pre-connect trigger
+ (within 10 seconds). There is a high chance that loading the resource used a
+ preconnected TCP session.
</summary>
</histogram>
@@ -6714,6 +6722,14 @@ other types of suffix sets.
</details>
</histogram>
+<histogram name="Net.PreconnectTriggerUsed" enum="PreconnectTriggerUsed">
+ <summary>
+ Indicate whether if a preconnect trigger is followed by a resource request
+ (from link navigations) to the host or not. This is to measure precision of
+ link-based preconnect triggers.
+ </summary>
+</histogram>
+
<histogram name="Net.PreconnectUtilization" enum="NetPreconnectUtilization">
<obsolete>
Sourced data corrected, and replaced by NetPreconnectUtilization2
@@ -20285,8 +20301,8 @@ other types of suffix sets.
</enum>
<enum name="PreconnectedNavigation" type="int">
- <int value="0" label="Page nav. preceded by a pre-connect"/>
- <int value="1" label="No recent pre-connect to the page"/>
+ <int value="0" label="No recent pre-connect to the page"/>
+ <int value="1" label="Page nav. preceded by a pre-connect"/>
</enum>
<enum name="PreconnectMotivation" type="int">
@@ -20309,6 +20325,11 @@ other types of suffix sets.
<int value="2" label="TOO_NEW"/>
</enum>
+<enum name="PreconnectTriggerUsed" type="int">
+ <int value="0" label="The pre-connect triggered host was not accessed"/>
+ <int value="1" label="The pre-connect triggered host was accessed"/>
+</enum>
+
<enum name="PrerenderFinalStatus" type="int">
<int value="0" label="USED"/>
<int value="1" label="TIMED_OUT"/>
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698