Chromium Code Reviews| 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"/> |