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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 618083003: QUIC - track the open and close states of disk cache entries of (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updated the doc per comments in Patch Set 2 Created 6 years, 2 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 | « net/http/disk_cache_based_quic_server_info.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 f2740b962f9da89bf597636b5293f536fe0a0391..04dfe07db1e18aabb90ad2288eff7f2f42ea1144 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -16836,6 +16836,14 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Net.QuicDiskCache.EntryState" enum="QuicDiskCacheEntryState">
+ <owner>rtenneti@chromium.org</owner>
+ <summary>
+ Tracks the opening and closing of the disk cache entries. Recorded each time
Ilya Sherman 2014/10/01 22:02:08 nit: "the disk cache entries" -> "disk cache entri
ramant (doing other things) 2014/10/02 00:08:03 Done.
+ disk cache entry is either opened or closed.
Ilya Sherman 2014/10/01 22:02:08 nit: "disk cache entry" -> "a disk cache entry"
ramant (doing other things) 2014/10/02 00:08:03 Done.
+ </summary>
+</histogram>
+
<histogram name="Net.QuicEphemeralPortsSuggested">
<owner>rch@chromium.org</owner>
<summary>The number of ports suggested per server.</summary>
@@ -49710,6 +49718,11 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="7" label="Address and port match: IPv6 IPv6"/>
</enum>
+<enum name="QuicDiskCacheEntryState" type="int">
+ <int value="0" label="Opened"/>
+ <int value="1" label="Closed"/>
+</enum>
+
<enum name="QuicErrorCodes" type="int">
<int value="0" label="NO_ERROR"/>
<int value="1" label="INTERNAL_ERROR"/>
« no previous file with comments | « net/http/disk_cache_based_quic_server_info.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698