1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
|
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# Adding a new metric? We have docs for that!
# https://firefox-source-docs.mozilla.org/toolkit/components/glean/user/new_definitions_file.html
---
$schema: moz://mozilla.org/schemas/glean/metrics/2-0-0
$tags:
- 'Toolkit :: Form Autofill'
formautofill.creditcards:
autofill_profiles_count:
type: quantity
unit: credit card autofill profiles
description: >
Count at store time how many credit card autofill profiles the user has.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=990203
- https://bugzilla.mozilla.org/show_bug.cgi?id=1834571
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1834571#c2
notification_emails:
- autofill@lists.mozilla.org
- passwords-dev@mozilla.org
expires: never
telemetry_mirror: FORMAUTOFILL_CREDITCARDS_AUTOFILL_PROFILES_COUNT
form_detected:
type: event
description: >
Recorded when a form is recognized as a credit card form.
The possible value of cc_* are "autocomplete", "undetected", "regexp" or an integer between 0-100:
- When the value is "autocomplete", the field is identified via autocomplete attribute
- When the value is "undetected", the field is not detected in the form
- When the value is "regexp", then the field is identified by regexp-based heuristic
- When the value is an integer greater than 0, the value indicates the confidence value from fathom (normalized to 0-100)
The flow id points to an interaction session with a credit card form and is shared across cc_form events .
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1653162
- https://bugzilla.mozilla.org/show_bug.cgi?id=1653073
- https://bugzilla.mozilla.org/show_bug.cgi?id=1720608
- https://bugzilla.mozilla.org/show_bug.cgi?id=1767907
- https://bugzilla.mozilla.org/show_bug.cgi?id=1757731
- https://bugzilla.mozilla.org/show_bug.cgi?id=1834570
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1653073#c5
- https://bugzilla.mozilla.org/show_bug.cgi?id=1653073#c7
- https://bugzilla.mozilla.org/show_bug.cgi?id=1720608#c5
- https://bugzilla.mozilla.org/show_bug.cgi?id=1757731#c5
notification_emails:
- autofill@lists.mozilla.org
- passwords-dev@mozilla.org
expires: never
extra_keys:
flow_id:
description: Flow id of an interaction session with a credit card form
type: string
cc_name:
description: Credit card cardholder name field result
type: string
cc_number:
description: Credit card number field result
type: string
cc_type:
description: Credit card type result
type: string
cc_exp:
description: Credit card expiration date result
type: string
cc_exp_month:
description: Credit card expiration month result
type: string
cc_exp_year:
description: Credit card expiration year result
type: string
cc_number_multi_parts:
description: The count of input fields for splitting the Credit Card Number
type: quantity
form_popup_shown:
type: event
description: >
Recorded when autofill popup is shown for a credit card form.
The flow id indicates an interaction session with the a form and is shared across cc_form events.
The field_name is used to record the field that triggers this event.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1653162
- https://bugzilla.mozilla.org/show_bug.cgi?id=1653073
- https://bugzilla.mozilla.org/show_bug.cgi?id=1720608
- https://bugzilla.mozilla.org/show_bug.cgi?id=1767907
- https://bugzilla.mozilla.org/show_bug.cgi?id=1757731
- https://bugzilla.mozilla.org/show_bug.cgi?id=1834570
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1653073#c5
- https://bugzilla.mozilla.org/show_bug.cgi?id=1653073#c7
- https://bugzilla.mozilla.org/show_bug.cgi?id=1720608#c5
- https://bugzilla.mozilla.org/show_bug.cgi?id=1757731#c5
notification_emails:
- autofill@lists.mozilla.org
- passwords-dev@mozilla.org
expires: never
extra_keys:
flow_id:
description: Flow id of an interaction session with a credit card form
type: string
field_name:
description: Name of the field being affected by the event
type: string
form_filled:
type: event
description: >
Recorded when a credit card form is autofilled.
The flow id indicates an interaction session with the a form and is shared across cc_form events.
The possible value of cc_* are `filled`, `not_filled`, `user_filled` or `unavailable`
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1653162
- https://bugzilla.mozilla.org/show_bug.cgi?id=1653073
- https://bugzilla.mozilla.org/show_bug.cgi?id=1720608
- https://bugzilla.mozilla.org/show_bug.cgi?id=1767907
- https://bugzilla.mozilla.org/show_bug.cgi?id=1757731
- https://bugzilla.mozilla.org/show_bug.cgi?id=1834570
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1653073#c5
- https://bugzilla.mozilla.org/show_bug.cgi?id=1653073#c7
- https://bugzilla.mozilla.org/show_bug.cgi?id=1720608#c5
- https://bugzilla.mozilla.org/show_bug.cgi?id=1757731#c5
notification_emails:
- autofill@lists.mozilla.org
- passwords-dev@mozilla.org
expires: never
extra_keys:
flow_id:
description: Flow id of an interaction session with a credit card form
type: string
cc_name:
description: Credit card cardholder name field result
type: string
cc_number:
description: Credit card number field result
type: string
cc_type:
description: Credit card type result
type: string
cc_exp:
description: Credit card expiration date result
type: string
cc_exp_month:
description: Credit card expiration month result
type: string
cc_exp_year:
description: Credit card expiration year result
type: string
form_filled_modified:
type: event
description: >
Recorded when a field in a credit card form is autofilled and then modified by the user.
The flow id indicates an interaction session with the a form and is shared across cc_form events.
The field_name is used to record the field that triggers this event.
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1653162
- https://bugzilla.mozilla.org/show_bug.cgi?id=1653073
- https://bugzilla.mozilla.org/show_bug.cgi?id=1720608
- https://bugzilla.mozilla.org/show_bug.cgi?id=1767907
- https://bugzilla.mozilla.org/show_bug.cgi?id=1757731
- https://bugzilla.mozilla.org/show_bug.cgi?id=1834570
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1653073#c5
- https://bugzilla.mozilla.org/show_bug.cgi?id=1653073#c7
- https://bugzilla.mozilla.org/show_bug.cgi?id=1720608#c5
- https://bugzilla.mozilla.org/show_bug.cgi?id=1757731#c5
notification_emails:
- autofill@lists.mozilla.org
- passwords-dev@mozilla.org
expires: never
extra_keys:
flow_id:
description: Flow id of an interaction session with a credit card form
type: string
field_name:
description: Name of the field being affected by the event
type: string
form_submitted:
type: event
description: >
Recorded when a credit card form is submitted.
The flow id indicates an interaction session with the a form and is shared across cc_form events.
The possible value of cc_* are `autofilled`, `user_filled` or `unavailable`
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1653162
- https://bugzilla.mozilla.org/show_bug.cgi?id=1653073
- https://bugzilla.mozilla.org/show_bug.cgi?id=1720608
- https://bugzilla.mozilla.org/show_bug.cgi?id=1767907
- https://bugzilla.mozilla.org/show_bug.cgi?id=1757731
- https://bugzilla.mozilla.org/show_bug.cgi?id=1834570
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1653073#c5
- https://bugzilla.mozilla.org/show_bug.cgi?id=1653073#c7
- https://bugzilla.mozilla.org/show_bug.cgi?id=1720608#c5
- https://bugzilla.mozilla.org/show_bug.cgi?id=1757731#c5
notification_emails:
- autofill@lists.mozilla.org
- passwords-dev@mozilla.org
expires: never
extra_keys:
flow_id:
description: Flow id of an interaction session with a credit card form
type: string
cc_name:
description: Credit card cardholder name field result
type: string
cc_number:
description: Credit card number field result
type: string
cc_type:
description: Credit card type result
type: string
cc_exp:
description: Credit card expiration date result
type: string
cc_exp_month:
description: Credit card expiration month result
type: string
cc_exp_year:
description: Credit card expiration year result
type: string
form_cleared:
type: event
description: >
Recorded when a credit card form is cleared .
The flow id indicates an interaction session with the a form and is shared across cc_form events.
The field_name is used to record the field that triggers this event
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1653162
- https://bugzilla.mozilla.org/show_bug.cgi?id=1653073
- https://bugzilla.mozilla.org/show_bug.cgi?id=1720608
- https://bugzilla.mozilla.org/show_bug.cgi?id=1767907
- https://bugzilla.mozilla.org/show_bug.cgi?id=1757731
- https://bugzilla.mozilla.org/show_bug.cgi?id=1834570
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1653073#c5
- https://bugzilla.mozilla.org/show_bug.cgi?id=1653073#c7
- https://bugzilla.mozilla.org/show_bug.cgi?id=1720608#c5
- https://bugzilla.mozilla.org/show_bug.cgi?id=1757731#c5
notification_emails:
- autofill@lists.mozilla.org
- passwords-dev@mozilla.org
expires: never
extra_keys:
flow_id:
description: Flow id of an interaction session with a credit card form
type: string
field_name:
description: Name of the field being affected by the event
type: string
formautofill:
form_submission_heuristic:
type: labeled_counter
description:
The heuristic that detected the form submission.
labels:
- form-submit-event
- form-removal-after-fetch
- page-navigation
- iframe-pagehide
bugs:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1874829
data_reviews:
- https://bugzilla.mozilla.org/show_bug.cgi?id=1874829#c4
notification_emails:
- autofill@lists.mozilla.org
- passwords-dev@mozilla.org
expires: 130
|