Index: tools/metrics/histograms/histograms.xml |
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml |
index e35ae92e0c9f08a2a52273a11e3c56362403f57b..fa989db3fd62aa3492f0447635e39b87c90e3927 100644 |
--- a/tools/metrics/histograms/histograms.xml |
+++ b/tools/metrics/histograms/histograms.xml |
@@ -3499,6 +3499,13 @@ Therefore, the affected-histogram name has to have at least one dot in it. |
</summary> |
</histogram> |
+<histogram name="DiskBasedCertCache.CertIoCacheResult" enum="CacheResult"> |
wtc
2014/07/10 18:21:38
Nit: what does the "Io" mean in the histogram name
brandonsalmon
2014/07/10 18:42:39
Oops missed this comment. I did this because Jim r
|
+ <owner>brandonsalmon@chromium.org</owner> |
+ <summary> |
+ Measures the frequency of cache hits in the DiskBasedCertCache. |
wtc
2014/07/10 18:21:38
This summary needs updating. This histogram is not
|
+ </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> |
@@ -35319,6 +35326,14 @@ Therefore, the affected-histogram name has to have at least one dot in it. |
<int value="3" label="HTTP_STREAM_FACTORY_IMPL_JOB_MAIN"/> |
</enum> |
+<enum name="CacheResult" type="int"> |
+ <int value="0" label="MEMORY_CACHE_HIT"/> |
+ <int value="1" label="DISK_CACHE_HIT"/> |
+ <int value="2" label="DISK_CACHE_CORRUPT"/> |
+ <int value="3" label="CACHE_MISS"/> |
+ <int value="4" label="CACHE_ERROR"/> |
+</enum> |
+ |
<enum name="CanvasContextType" type="int"> |
<int value="0" label="2d"/> |
<int value="1" label="webkit-3d"/> |