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

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

Side-by-side diff isn't available for this file because of its large size.
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: Switched header file. 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
« no previous file with comments | « content/browser/loader/resource_dispatcher_host_impl.cc ('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 7b6aba272ebb8407ff7973bc288f66d54e635ae6..97a44654c9f08b5acfb367d295ef7c6252228b20 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -21155,6 +21155,14 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Net.RequestTime">
+ <owner>rdsmith@chromium.org</owner>
+ <summary>
+ The amount of time between request initiation and request completion for
+ success and various different errors.
+ </summary>
+</histogram>
+
<histogram name="Net.ResourceLoader.ReadDeferral" units="milliseconds">
<owner>clamy@chromium.org</owner>
<summary>
@@ -68453,6 +68461,18 @@ To add a new entry, add it with any value and run test to compute valid value.
<affected-histogram name="Net.QuicDiskCache.FailureReason"/>
</histogram_suffixes>
+<histogram_suffixes name="NetRequestTime" separator=".">
+ <suffix name="ErrAborted" label="Request aborted"/>
+ <suffix name="ErrConnectionReset" label="Connection reset"/>
+ <suffix name="ErrConnectionTimedOut" label="Request connection timed out"/>
+ <suffix name="ErrInternetDisconnected" label="Internet disconnected"/>
+ <suffix name="ErrNameNotResolved" label="Request domain not resolved"/>
+ <suffix name="ErrTimedOut" label="Request timed out"/>
+ <suffix name="MiscError" label="Uncategorized error"/>
+ <suffix name="Success" label="Success"/>
+ <affected-histogram name="Net.RequestTime"/>
+</histogram_suffixes>
+
<histogram_suffixes name="NetworkErrors" separator=".">
<suffix name="AuthExtTimeout" label="with the last error AuthExtTimeout"/>
<suffix name="Offline" label="with the last error Offline"/>
« no previous file with comments | « content/browser/loader/resource_dispatcher_host_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698