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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 356953003: Adding DiskBasedCertCache to HttpCache (+UMA). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@current
Patch Set: Fixed nits. 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/http_cache_transaction.cc ('K') | « net/http/http_cache_transaction.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..5b28fecefccea7d2e2a2c50efa733a47ee6a2c7b 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -3499,6 +3499,118 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="DiskBasedCertCache.ChainReadTime" units="milliseconds">
+ <owner>brandonsalmon@chromium.org</owner>
+ <summary>
+ Measures the wall clock time from when the reading of a certificate chain to
+ disk cache is issued until the last certificate is retrieved.
+ </summary>
+</histogram>
+
+<histogram name="DiskBasedCertCache.ChainWriteTime" units="milliseconds">
+ <owner>brandonsalmon@chromium.org</owner>
+ <summary>
+ Measures the wall clock time from when the writing of a certificate chain to
+ disk cache is issued until the last certificate is written.
+ </summary>
+</histogram>
+
+<histogram name="DiskBasedCertCache.ReadSuccessInt1">
+ <owner>brandonsalmon@chromium.org</owner>
+ <summary>
+ A boolean counter for the total number of successes versus failures in
+ reading the first intermediate certificate from the disk cache.
+ </summary>
+</histogram>
+
+<histogram name="DiskBasedCertCache.ReadSuccessInt2">
+ <owner>brandonsalmon@chromium.org</owner>
+ <summary>
+ A boolean counter for the total number of successes versus failures in
+ reading the second intermediate certificate from the disk cache.
+ </summary>
+</histogram>
+
+<histogram name="DiskBasedCertCache.ReadSuccessIntN">
+ <owner>brandonsalmon@chromium.org</owner>
+ <summary>
+ A boolean counter for the total number of successes versus failures in
+ reading the Nth intermediate certificate from the disk cache.
+ </summary>
+</histogram>
+
+<histogram name="DiskBasedCertCache.ReadSuccessLeaf">
+ <owner>brandonsalmon@chromium.org</owner>
+ <summary>
+ A boolean counter for the total number of successes versus failures in
+ reading the leaf certificate from the disk cache.
+ </summary>
+</histogram>
+
+<histogram name="DiskBasedCertCache.ReadSuccessRoot">
+ <owner>brandonsalmon@chromium.org</owner>
+ <summary>
+ A boolean counter for the number of successes versus failures in reading
+ root certificates from the disk cache.
+ </summary>
+</histogram>
+
+<histogram name="DiskBasedCertCache.ReadSuccessTotal">
+ <owner>brandonsalmon@chromium.org</owner>
+ <summary>
+ A boolean counter for the total number of successes versus failures in
+ reading certificates from the disk cache.
+ </summary>
+</histogram>
+
+<histogram name="DiskBasedCertCache.WriteSuccessInt1">
+ <owner>brandonsalmon@chromium.org</owner>
+ <summary>
+ A boolean counter for the total number of successes versus failures in
+ writing the first intermediate certificate to the disk cache.
+ </summary>
+</histogram>
+
+<histogram name="DiskBasedCertCache.WriteSuccessInt2">
+ <owner>brandonsalmon@chromium.org</owner>
+ <summary>
+ A boolean counter for the total number of successes versus failures in
+ writing the second intermediate certificate to the disk cache.
+ </summary>
+</histogram>
+
+<histogram name="DiskBasedCertCache.WriteSuccessIntN">
+ <owner>brandonsalmon@chromium.org</owner>
+ <summary>
+ A boolean counter for the total number of successes versus failures in
+ writing the Nth intermediate certificate to the disk cache.
+ </summary>
+</histogram>
+
+<histogram name="DiskBasedCertCache.WriteSuccessLeaf">
+ <owner>brandonsalmon@chromium.org</owner>
+ <summary>
+ A boolean counter for the total number of successes versus failures in
+ writing the leaf certificate to the disk cache.
+ </summary>
+</histogram>
+
+<histogram name="DiskBasedCertCache.WriteSuccessRoot">
+ <owner>brandonsalmon@chromium.org</owner>
+ <summary>
+ A boolean counter for the number of successes versus failures in writing
+ root certificates to the disk cache.
+ </summary>
+</histogram>
+
+<histogram name="DiskBasedCertCache.WriteSuccessTotal">
+ <owner>brandonsalmon@chromium.org</owner>
+ <summary>
+ A boolean counter for the total number of successes versus failures in
+ writing certificates to the disk cache.
+ </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/http_cache_transaction.cc ('K') | « net/http/http_cache_transaction.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698