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

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

Issue 1476503004: [page_load_metrics] User Initiated Abort Tracking (Observer version) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@new_observer
Patch Set: Don't clear provisional loads on RenderProcessGone Created 5 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
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 45f0f225c18b1c704e28262ab636e23485e42c7c..7f6ece64c8f1abaa31d9f91ad0e05c6690d3098d 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -31412,6 +31412,55 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="PageLoad.AbortTiming.Close" units="milliseconds">
+ <owner>csharrison@chromium.org</owner>
+ <summary>
+ Measures the time from navigation start to the time the page load was
+ aborted by the user closing the tab or browser.
+ </summary>
+</histogram>
+
+<histogram name="PageLoad.AbortTiming.ForwardBackNavigation"
+ units="milliseconds">
+ <owner>csharrison@chromium.org</owner>
+ <summary>
+ Measures the time from navigation start to the time the page load was
+ aborted by a forward or back navigation.
+ </summary>
+</histogram>
+
+<histogram name="PageLoad.AbortTiming.NewNavigation" units="milliseconds">
+ <owner>csharrison@chromium.org</owner>
+ <summary>
+ Measures the time from navigation start to the time the page load was
+ aborted by a new navigation.
+ </summary>
+</histogram>
+
+<histogram name="PageLoad.AbortTiming.Other" units="milliseconds">
+ <owner>csharrison@chromium.org</owner>
+ <summary>
+ Measures the time from navigation start to the time the page load was
+ aborted. The abort cause is unknown.
+ </summary>
+</histogram>
+
+<histogram name="PageLoad.AbortTiming.Reload" units="milliseconds">
+ <owner>csharrison@chromium.org</owner>
+ <summary>
+ Measures the time from navigation start to the time the page load was
+ aborted by a reload.
+ </summary>
+</histogram>
+
+<histogram name="PageLoad.AbortTiming.Stop" units="milliseconds">
+ <owner>csharrison@chromium.org</owner>
+ <summary>
+ Measures the time from navigation start to the time the page load was
+ aborted by the user pressing stop.
+ </summary>
+</histogram>
+
<histogram name="PageLoad.Clients.GoogleCaptcha.Events"
enum="GoogleCaptchaEvent">
<owner>mdw@chromium.org</owner>
@@ -82769,6 +82818,18 @@ To add a new entry, add it with any value and run test to compute valid value.
<affected-histogram name="PageLoad.Timing2.NavigationToLoadEventFired"/>
</histogram_suffixes>
+<histogram_suffixes name="PageLoadEventConditions">
+ <suffix name="BeforeCommit"/>
+ <suffix name="AfterCommit.BeforePaint"/>
+ <affected-histogram name="PageLoad.AbortTiming.Close"/>
+ <affected-histogram name="PageLoad.AbortTiming.ForwardBackNavigation"/>
+ <affected-histogram name="PageLoad.AbortTiming.NewNavigation"/>
+ <affected-histogram name="PageLoad.AbortTiming.Other"/>
+ <affected-histogram name="PageLoad.AbortTiming.Reload"/>
+ <affected-histogram name="PageLoad.AbortTiming.Stop"/>
+ <affected-histogram name="PageLoad.Timing2.NavigationToFirstBackground"/>
+</histogram_suffixes>
+
<histogram_suffixes name="PageLoadMetricsClients" separator="."
ordering="prefix">
<suffix name="Clients.FromGWS"

Powered by Google App Engine
This is Rietveld 408576698