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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 378063002: Adding cache hit/miss histograms to DiskBasedCertCache. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@DBCC_MRU_Implement
Patch Set: Created 6 years, 5 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
« net/http/disk_based_cert_cache.cc ('K') | « net/http/disk_based_cert_cache.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 e35ae92e0c9f08a2a52273a11e3c56362403f57b..1c5911fdb00d13fa09a8a115695e0eb1df356ded 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -3499,6 +3499,22 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="DiskBasedCertCache.DiskCacheHits">
Ryan Sleevi 2014/07/09 00:10:10 Rather than describing in prose what true/false (r
+ <owner>brandonsalmon@chromium.org</owner>
+ <summary>
+ Measure cache hits and misses when attempting to read a certificate from
+ disk using DiskBasedCertCache. True for hits, false for misses.
Ryan Sleevi 2014/07/09 00:10:10 Measure whether a certificate was found cached on
+ </summary>
+</histogram>
+
+<histogram name="DiskBasedCertCache.MemCacheHits">
+ <owner>brandonsalmon@chromium.org</owner>
+ <summary>
+ Measures cache hits and misses for DiskBasedCertCache's in-memory MRU cache.
+ True for hits, false for misses.
Ryan Sleevi 2014/07/09 00:10:10 Measure whether a certificate was found in net::Di
+ </summary>
+</histogram>
+
<histogram name="DiskCache.0.FilesAge" units="hours">
<owner>rvargas@chromium.org</owner>
<summary>The age of the cache's files (wall time).</summary>
« net/http/disk_based_cert_cache.cc ('K') | « net/http/disk_based_cert_cache.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698