Chromium Code Reviews| Index: tools/metrics/histograms/histograms.xml |
| diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml |
| index 89d32719ac762dbc90b2214889c0be53976010ad..3499c678072fc45fa9fcbe6a7cb0a8bc7eb915c2 100644 |
| --- a/tools/metrics/histograms/histograms.xml |
| +++ b/tools/metrics/histograms/histograms.xml |
| @@ -45230,6 +45230,32 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries. |
| </summary> |
| </histogram> |
| +<histogram name="UpdateEngine.CertificateCheck.Download" |
| + enum="UpdateEngineCertificateCheckStatus"> |
| + <owner>deymo@chromium.org</owner> |
| + <summary> |
| + The status of the certificate check done when downloading a payload over |
| + HTTPS. Note that most downloads are done over HTTP. |
| + |
| + This is reported on every payload download over HTTPS. |
|
deymo
2015/12/01 18:15:16
This is reported on every HTTPS connection to the
|
| + |
| + This metric is specific to ChromeOS. |
| + </summary> |
| +</histogram> |
| + |
| +<histogram name="UpdateEngine.CertificateCheck.UpdateCheck" |
| + enum="UpdateEngineCertificateCheckStatus"> |
| + <owner>deymo@chromium.org</owner> |
| + <summary> |
| + The status of the certificate check done when querying Omaha for a new |
| + version. |
| + |
| + This is reported on every update check. |
| + |
| + This metric is specific to ChromeOS. |
| + </summary> |
| +</histogram> |
| + |
| <histogram name="UpdateEngine.Check.DownloadErrorCode" |
| enum="UpdateEngineDownloadErrorCode"> |
| <owner>zeuthen@chromium.org</owner> |
| @@ -67289,6 +67315,20 @@ To add a new entry, add it with any value and run test to compute valid value. |
| <int value="10" label="Abnormal Termination"/> |
| </enum> |
| +<enum name="UpdateEngineCertificateCheckStatus" type="int"> |
| + <int value="0" label="Valid certificate"> |
| + The certificate is valid and the same as seen before or the first time we |
| + see a certificate. |
| + </int> |
| + <int value="1" label="Changed certificate"> |
| + The certificate is valid, but is different than a previously seen |
| + certificate for the selected server. |
| + </int> |
| + <int value="2" label="Certificate check failed"> |
| + The certificate validation failed. |
| + </int> |
| +</enum> |
| + |
| <enum name="UpdateEngineCheckReaction" type="int"> |
| <int value="0" label="Updating"/> |
| <int value="1" label="Ignoring"/> |