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

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

Issue 2800853004: UKM that threads together multiple form interaction events. (Closed)
Patch Set: Uses size_t for local and server record type count. Created 3 years, 8 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:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/ukm/test_ukm_service.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/ukm/ukm.xml
diff --git a/tools/metrics/ukm/ukm.xml b/tools/metrics/ukm/ukm.xml
index e83eafe975b032bcdbfc7e19f024ab2cdf793db6..541f1f6bc6ea3b5166ec6120c58496b55577d051 100644
--- a/tools/metrics/ukm/ukm.xml
+++ b/tools/metrics/ukm/ukm.xml
@@ -20,6 +20,139 @@ along with a detailed description for each metric.
</metric>
</event>
+<event name="Autofill.DeveloperEngagement">
+ <owner>csashi@google.com</owner>
+ <summary>
+ Recorded when we parse a form to log whether developer has used autocomplete
+ markup or UPI-VPA hints.
+ </summary>
+ <metric name="DeveloperEngagement"/>
+</event>
+
+<event name="Autofill.FormSubmitted">
+ <owner>csashi@google.com</owner>
+ <summary>
+ Recorded when user submits a form.
+ </summary>
+ <metric name="AutofillFormSubmittedState">
+ <summary>
+ Whether form's fields were all autofilled, some fields were autofilled, or
+ none of the field were autofilled. See |AutofillFormSubmittedState|.
+ </summary>
+ </metric>
+ <metric name="MillisecondsSinceFormLoaded">
+ <summary>
+ Time since form parse.
+ </summary>
+ </metric>
+</event>
+
+<event name="Autofill.InteractedWithForm">
+ <owner>csashi@google.com</owner>
+ <summary>
+ Recorded when we parse a form to log form metadata and autofill settings
+ that apply to all subsequent events for this form.
+ </summary>
+ <metric name="IsForCreditCard">
+ <summary>
+ True for credit card forms, false for address/profile forms.
+ </summary>
+ </metric>
+ <metric name="LocalRecordTypeCount">
+ <summary>
+ Number of local credit cards or local autofill profiles.
+ </summary>
+ </metric>
+ <metric name="ServerRecordTypeCount">
+ <summary>
+ Number of masked and full server credit cards or server autofill profiles.
+ </summary>
+ </metric>
+</event>
+
+<event name="Autofill.SuggestionsShown">
+ <owner>csashi@google.com</owner>
+ <metric name="MillisecondsSinceFormLoaded">
+ <summary>
+ Time since form parse.
+ </summary>
+ </metric>
+</event>
+
+<event name="Autofill.SelectedMaskedServerCard">
+ <owner>csashi@google.com</owner>
+ <metric name="MillisecondsSinceFormLoaded">
+ <summary>
+ Time since form parse.
+ </summary>
+ </metric>
+</event>
+
+<event name="Autofill.SuggestionFilled">
+ <owner>csashi@google.com</owner>
+ <summary>
+ Recorded when user selects a suggestion and we fill the form with that
+ suggestion.
+ </summary>
+ <metric name="MillisecondsSinceFormLoaded">
+ <summary>
+ Time since form parse.
+ </summary>
+ </metric>
+ <metric name="RecordType">
+ <summary>
+ Whether the suggestion was from a local card/autofill profile or from a
+ server card/autofill profile.
+ </summary>
+ </metric>
+</event>
+
+<event name="Autofill.TextFieldDidChange">
+ <owner>csashi@google.com</owner>
+ <summary>
+ Recorded when user edits a text field. The text field may have been
+ autofilled.
+ </summary>
+ <metric name="FieldTypeGroup">
+ <summary>
+ Field's |FieldTypeGroup|. See |AutofillType.group()|.
+ </summary>
+ </metric>
+ <metric name="HeuristicType">
+ <summary>
+ Field's |ServerFieldType| based on heuristics. See
+ |AutofillField.heuristic_type()|.
+ </summary>
+ </metric>
+ <metric name="HtmlFieldMode">
+ <summary>
+ Whether the field's autocomplete hint specified 'billing' or 'shipping'.
+ See |AutofillField.html_mode()|.
+ </summary>
+ </metric>
+ <metric name="HtmlFieldType">
+ <summary>
+ Field's autocomplete field type hint. See |AutofillField.html_type()|.
+ </summary>
+ </metric>
+ <metric name="IsAutofilled">
+ <summary>
+ True whether field was autofilled. See |AutofillField.is_autofilled|.
+ </summary>
+ </metric>
+ <metric name="MillisecondsSinceFormLoaded">
+ <summary>
+ Time since form parse.
+ </summary>
+ </metric>
+ <metric name="ServerType">
+ <summary>
+ Field's |ServerFieldType| returned by server. See
+ |AutofillField.server_type()|.
+ </summary>
+ </metric>
+</event>
+
<event name="PageLoad">
<owner>bmcquade@chromium.org</owner>
<summary>
« no previous file with comments | « components/ukm/test_ukm_service.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698