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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 1578993003: Add Expect CT policy that gets checked on all certs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 9 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/ssl/ssl_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 66e63ae957d2d7b9b88eaf0817e32a46817d900e..a7ff9be0b955935be11c1d9dfec9fc82026ba763 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -27978,6 +27978,9 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<histogram name="Net.SSL_EVCertificateCTCompliance"
enum="CTRequirementCompliance">
+ <obsolete>
+ Deprecated as of 01/2016.
+ </obsolete>
<owner>eranm@chromium.org</owner>
<owner>rsleevi@chromium.org</owner>
<summary>
@@ -28003,6 +28006,20 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Net.SSL_EVCTCompliance" enum="EVCTCompliance">
+ <owner>eranm@chromium.org</owner>
+ <owner>rsleevi@chromium.org</owner>
+ <summary>
+ The state of compliance with Certificate Transparency presence requirements
+ for each EV certificate. An EV certificate could be non-compliant (in which
+ case it loses the EV status), comply through inclusion in the EV whitelist
+ or comply with the CT certificate policy. This metric will gauge adoption
+ rate of Certificate Transparency and will help identify when the EV
+ whitelist is no longer needed. Emitted during every SSL connection
+ establishment.
+ </summary>
+</histogram>
+
<histogram name="Net.SSL_EVWhitelistValidityForNonCompliantCert"
enum="EVWhitelistStatus">
<owner>eranm@chromium.org</owner>
@@ -61329,6 +61346,9 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</enum>
<enum name="CTRequirementCompliance" type="int">
+ <obsolete>
+ Deprecated 1/2016.
+ </obsolete>
<int value="0" label="Not Compliant"/>
<int value="1" label="Whitelisted"/>
<int value="2" label="Has enough SCTs"/>
@@ -63824,6 +63844,16 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="3" label="NON_ERROR_PAGE_URL_AND_NO_ERROR_INFO"/>
</enum>
+<enum name="EVCTCompliance" type="int">
+ <int value="0" label="EV policy does not apply"/>
+ <int value="1" label="Compliant because certificate is whitelisted"/>
+ <int value="2" label="Compliant because SCTs satisfy CT policy"/>
+ <int value="3" label="Not compliant because there are not enough SCTs"/>
+ <int value="4"
+ label="Not compliant because there are not diverse enough SCTs"/>
+ <int value="5" label="Not compliant because the build is not timely"/>
+</enum>
+
<enum name="EventHitTest" type="int">
<int value="0" label="Miss, not found in cache."/>
<int value="1" label="Miss, explicitly avoided."/>
« no previous file with comments | « net/ssl/ssl_info.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698