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

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

Issue 1127383009: Create histograms to track time-to-error values for different errors. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merged to revision p329442. Created 5 years, 7 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 7b6aba272ebb8407ff7973bc288f66d54e635ae6..9a119b0f230b65fa70c0a5826f948a87c1cd9991 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -21155,6 +21155,54 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Net.RequestTimeToErrAborted">
+ <owner>rdsmith@chromium.org</owner>
+ <summary>
+ The amount of time between request initiation and request abort, for aborted
+ main frame requests.
+ </summary>
+</histogram>
+
+<histogram name="Net.RequestTimeToErrConnectionReset">
+ <owner>rdsmith@chromium.org</owner>
+ <summary>
+ The amount of time between request initiation and connection reset, for main
+ frame requests which end in connection reset.
+ </summary>
+</histogram>
+
+<histogram name="Net.RequestTimeToErrInternetDisconnected">
+ <owner>rdsmith@chromium.org</owner>
+ <summary>
+ The amount of time between request initiation and internet disconnected, for
+ main frame requests which end in internet disconnected.
+ </summary>
+</histogram>
+
+<histogram name="Net.RequestTimeToErrTimedOut">
+ <owner>rdsmith@chromium.org</owner>
+ <summary>
+ The amount of time between request initiation and request timeout, for timed
+ out main frame requests.
+ </summary>
+</histogram>
+
+<histogram name="Net.RequestTimeToMiscError">
+ <owner>rdsmith@chromium.org</owner>
+ <summary>
+ The amount of time between request initiation and error detection, for main
+ frame requests which end in an error not otherwise logged.
+ </summary>
+</histogram>
+
+<histogram name="Net.RequestTimeToSuccess">
+ <owner>rdsmith@chromium.org</owner>
+ <summary>
+ The amount of time between request initiation and reading the last response
+ byte from the network, for successful main frame requests.
+ </summary>
+</histogram>
+
<histogram name="Net.ResourceLoader.ReadDeferral" units="milliseconds">
<owner>clamy@chromium.org</owner>
<summary>

Powered by Google App Engine
This is Rietveld 408576698