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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 422063004: Certificate Transparency: Require SCTs for EV certificates. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing comments Created 6 years 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/socket/ssl_client_socket_pool_unittest.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 156913886691d88317b39ac951ec44852e954e9e..71daf1af52b8d748127bce76731f430362183dbc 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -18782,6 +18782,23 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Net.SSL_EVCertificateCTCompliance"
+ enum="CTRequirementCompliance">
+ <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 have the required number of Signed Certificate Timestamps. 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, but only if the client is checking compliance with
+ Certificate Transparency requirements (currently guarded by a Finch
+ experiment).
+ </summary>
+</histogram>
+
<histogram name="Net.SSL_EVCertificateInWhitelist" enum="Boolean">
<owner>eranm@chromium.org</owner>
<owner>rsleevi@chromium.org</owner>
@@ -42784,6 +42801,12 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="8" label="PlayMusic"/>
</enum>
+<enum name="CTRequirementCompliance" type="int">
+ <int value="0" label="CT_NOT_COMPLIANT"/>
+ <int value="1" label="CT_IN_WHITELIST"/>
+ <int value="2" label="CT_ENOUGH_SCTS"/>
Ilya Sherman 2014/12/01 23:14:08 Optional suggestion: You might want to use more hu
Eran Messeri 2014/12/03 14:45:37 Done.
+</enum>
+
<enum name="DailyEventIntervalType" type="int">
<int value="0" label="First Run"/>
<int value="1" label="Day Elapsed"/>
« no previous file with comments | « net/socket/ssl_client_socket_pool_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698