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

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

Issue 1490643002: Add UpdateEngine.CertificateCheck.* to histograms.xml (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed nits. Created 5 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 | « no previous file | 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 89d32719ac762dbc90b2214889c0be53976010ad..49e4fce5ff742c62204145ac5cc3192d4108be2d 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -45230,6 +45230,33 @@ 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 HTTPS connection to the payload download server.
+ Connection drops on the same payload may report different values.
+
+ 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 +67316,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"/>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698