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

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

Issue 1189203003: Add UMA for consistency between TPM and install attributes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master3
Patch Set: Created 5 years, 6 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
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index a662614823bb3f57514102fd3927bf799ed6549f..7419c32e168f538a99b99306130e00a78403e487 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -7832,6 +7832,15 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Enterprise.AttributesTPMConsistency"
+ enum="EnterpriseAttributesTPMConsistencyType">
+ <owner>tnagel@chromium.org</owner>
+ <summary>
+ Consistency between TPM lock state and absence/presence of install
+ attributes.
+ </summary>
+</histogram>
+
<histogram name="Enterprise.AutoEnrollmentExtraTime" units="milliseconds">
<owner>mnissler@chromium.org</owner>
<summary>
@@ -52422,6 +52431,34 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
<int value="3" label="Error"/>
</enum>
+<enum name="EnterpriseAttributesTPMConsistencyType" type="int">
+ <int value="0" label="unknown attributes, enterprise mode, TPM unlocked"/>
+ <int value="1" label="unlocked attributes, enterprise mode, TPM unlocked"/>
+ <int value="2" label="pending attributes, enterprise mode, TPM unlocked"/>
+ <int value="3" label="locked attributes, enterprise mode, TPM unlocked"/>
+ <int value="4" label="unknown attributes, other mode, TPM unlocked"/>
+ <int value="5" label="unlocked attributes, other mode, TPM unlocked"/>
+ <int value="6" label="pending attributes, other mode, TPM unlocked"/>
+ <int value="7" label="locked attributes, other mode, TPM unlocked"/>
+ <int value="8" label="unknown attributes, enterprise mode, TPM locked"/>
+ <int value="9" label="unlocked attributes, enterprise mode, TPM locked"/>
+ <int value="10" label="pending attributes, enterprise mode, TPM locked"/>
+ <int value="11" label="locked attributes, enterprise mode, TPM locked"/>
+ <int value="12" label="unknown attributes, other mode, TPM locked"/>
+ <int value="13" label="unlocked attributes, other mode, TPM locked"/>
+ <int value="14" label="pending attributes, other mode, TPM locked"/>
+ <int value="15" label="locked attributes, other mode, TPM locked"/>
+ <int value="16" label="unknown attributes, enterprise mode, TPM unreachable"/>
+ <int value="17"
+ label="unlocked attributes, enterprise mode, TPM unreachable"/>
+ <int value="18" label="pending attributes, enterprise mode, TPM unreachable"/>
+ <int value="19" label="locked attributes, enterprise mode, TPM unreachable"/>
+ <int value="20" label="unknown attributes, other mode, TPM unreachable"/>
+ <int value="21" label="unlocked attributes, other mode, TPM unreachable"/>
+ <int value="22" label="pending attributes, other mode, TPM unreachable"/>
+ <int value="23" label="locked attributes, other mode, TPM unreachable"/>
+</enum>
+
<enum name="EnterpriseCheckError" type="int">
<summary>
Defined as DomainCheckErrors in

Powered by Google App Engine
This is Rietveld 408576698