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

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

Issue 2940983003: [autofill] Add UKM for field type prediction quality and autofill outcome. (Closed)
Patch Set: fix a comment Created 3 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:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/autofill/core/browser/form_structure.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 cb3d98c0439d7594ee063dfe76e0a0e394333cf8..4e330d2219790cfe7f5735b6e0cc75542928c702 100644
--- a/tools/metrics/ukm/ukm.xml
+++ b/tools/metrics/ukm/ukm.xml
@@ -35,6 +35,98 @@ be describing additional metrics about the same event.
<metric name="DeveloperEngagement"/>
</event>
+<event name="Autofill.FieldFillStatus">
+ <owner>rogerm@chromium.org</owner>
+ <summary>
+ Recorded when Chrome validates field type predictions (on submit, on leaving
+ a form, on receiving a form with autocomplete attributes).
+ </summary>
+ <metric name="FieldSignature">
+ <summary>
+ The signature of the field. This is the hash identifier used to denote
+ this field for query and voting purposes. See
+ components/autofill/core/common/signatures_util.cc for more details.
+ </summary>
+ </metric>
+ <metric name="FormSignature">
+ <summary>
+ The signature of the form. This is the hash identifier used to denote this
+ form for query and voting purposes. See
+ components/autofill/core/common/signatures_util.cc for more details.
+ </summary>
+ </metric>
+ <metric name="IsAutofilled">
+ <summary>
+ The field is currently autofilled.
+ </summary>
+ </metric>
+ <metric name="MillisecondsSinceFormParsed">
+ <summary>
+ Time since form parse.
+ </summary>
+ </metric>
+ <metric name="PredictionSource">
+ <summary>
+ The system which generated the prediction: heuristics, server, overall.
+ </summary>
+ </metric>
+ <metric name="ValidationEvent">
+ <summary>
+ The event which triggered the validation: Submission, Left Form, Form has
+ Autocomplete attributes.
+ </summary>
+ </metric>
+ <metric name="WasPreviouslyAutofilled">
+ <summary>
+ The field was autofilled and subsequently edited.
+ </summary>
+ </metric>
+</event>
+
+<event name="Autofill.FieldTypeValidation">
+ <owner>rogerm@chromium.org</owner>
+ <summary>
+ Recorded when Chrome validates field type predictions (on submit, on leaving
+ a form, on receiving a form with autocomplete attributes).
+ </summary>
+ <metric name="ActualType">
+ <summary>
+ The observed type of the field. See: autofill::ServerFieldType
+ </summary>
+ </metric>
+ <metric name="FieldSignature">
+ <summary>
+ The signature of the field
+ </summary>
+ </metric>
+ <metric name="FormSignature">
+ <summary>
+ The signature of the form.
+ </summary>
+ </metric>
+ <metric name="MillisecondsSinceFormParsed">
+ <summary>
+ Time since form parse.
+ </summary>
+ </metric>
+ <metric name="PredictedType">
+ <summary>
+ The predicted type of the field. See: autofill::ServerFieldType
+ </summary>
+ </metric>
+ <metric name="PredictionSource">
+ <summary>
+ The system which generated the prediction: heuristics, server, overall.
+ </summary>
+ </metric>
+ <metric name="ValidationEvent">
+ <summary>
+ The event which triggered the validation: Submission, Left Form, Form has
+ Autocomplete attributes.
+ </summary>
+ </metric>
+</event>
+
<event name="Autofill.FormSubmitted">
<owner>jiahuiguo@google.com</owner>
<summary>
« no previous file with comments | « components/autofill/core/browser/form_structure.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698