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

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

Issue 985993003: Certificate Transparency: Add UMA for whitelist status (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Correct use of the macro Created 5 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/cert/cert_policy_enforcer.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 91dbe51a1bca499b922f150e846c0e4e811698ce..558f7a716a801fd21692703a80d5333a1eb879f0 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -20251,6 +20251,20 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Net.SSL_EVWhitelistValidityForNonCompliantCert"
+ enum="EVWhitelistStatus">
+ <owner>eranm@chromium.org</owner>
+ <owner>rsleevi@chromium.org</owner>
+ <summary>
+ Whether the client holds a valid EV Certificates whitelist or not. Only
+ emitted when an EV cert that is not compliant with the Certificate
+ Transparency requirement is encountered. This histogram is intended to be
+ short-lived and help determine if EV certificates are considered
+ non-compliant because they are not whitelisted or if the client does not
+ hold a valid instance of the whitelist.
+ </summary>
+</histogram>
+
<histogram name="Net.SSLCertBlacklisted">
<owner>agl@chromium.org</owner>
<summary>
@@ -47768,6 +47782,12 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="11004" label="WSANO_DATA"/>
</enum>
+<enum name="EVWhitelistStatus" type="int">
+ <int value="0" label="Not present"/>
+ <int value="1" label="Invalid"/>
+ <int value="2" label="Valid"/>
+</enum>
+
<enum name="ExecutionPhase" type="int">
<int value="0" label="UNINITIALIZED_PHASE"/>
<int value="100" label="START_METRICS_RECORDING"/>
« no previous file with comments | « net/cert/cert_policy_enforcer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698