metrics.yaml (6082B)
1 # This Source Code Form is subject to the terms of the Mozilla Public 2 # License, v. 2.0. If a copy of the MPL was not distributed with this 3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 5 # This file defines the metrics that are recorded by glean telemetry. They are 6 # automatically converted to Kotlin code at build time using the `glean_parser` 7 # PyPI package. 8 --- 9 10 $schema: moz://mozilla.org/schemas/glean/metrics/2-0-0 11 12 messaging: 13 message_shown: 14 type: event 15 description: | 16 A message was shown to the user. 17 extra_keys: 18 message_key: 19 description: The id of the message 20 type: string 21 bugs: 22 - https://github.com/mozilla-mobile/fenix/issues/24224 23 data_reviews: 24 - https://github.com/mozilla-mobile/fenix/pull/24426 25 - https://github.com/mozilla-mobile/firefox-android/pull/1101 26 notification_emails: 27 - android-probes@mozilla.com 28 - cgordon@mozilla.com 29 data_sensitivity: 30 - interaction 31 expires: never 32 message_dismissed: 33 type: event 34 description: | 35 A message was dismissed by the user. 36 extra_keys: 37 message_key: 38 description: The id of the message 39 type: string 40 bugs: 41 - https://github.com/mozilla-mobile/fenix/issues/24224 42 data_reviews: 43 - https://github.com/mozilla-mobile/fenix/issues/24224 44 - https://github.com/mozilla-mobile/firefox-android/pull/1101 45 notification_emails: 46 - android-probes@mozilla.com 47 - cgordon@mozilla.com 48 data_sensitivity: 49 - interaction 50 expires: never 51 message_clicked: 52 type: event 53 description: | 54 A message was clicked by the user. 55 extra_keys: 56 message_key: 57 description: The id of the message 58 type: string 59 action_uuid: 60 description: The uuid of the action 61 type: string 62 bugs: 63 - https://github.com/mozilla-mobile/fenix/issues/24224 64 data_reviews: 65 - https://github.com/mozilla-mobile/fenix/issues/24224 66 - https://github.com/mozilla-mobile/firefox-android/pull/1101 67 notification_emails: 68 - android-probes@mozilla.com 69 - cgordon@mozilla.com 70 data_sensitivity: 71 - interaction 72 expires: never 73 message_expired: 74 type: event 75 description: | 76 A message maxDisplayCount has been surpassed. 77 extra_keys: 78 message_key: 79 description: The id of the message 80 type: string 81 bugs: 82 - https://github.com/mozilla-mobile/fenix/issues/24224 83 data_reviews: 84 - https://github.com/mozilla-mobile/fenix/issues/24224 85 - https://github.com/mozilla-mobile/firefox-android/pull/1101 86 notification_emails: 87 - android-probes@mozilla.com 88 - cgordon@mozilla.com 89 data_sensitivity: 90 - interaction 91 expires: never 92 malformed: 93 type: event 94 description: | 95 A message was malformed. 96 extra_keys: 97 message_key: 98 description: The id of the message 99 type: string 100 bugs: 101 - https://github.com/mozilla-mobile/fenix/issues/24224 102 data_reviews: 103 - https://github.com/mozilla-mobile/fenix/issues/24224 104 - https://github.com/mozilla-mobile/firefox-android/pull/1101 105 notification_emails: 106 - android-probes@mozilla.com 107 - cgordon@mozilla.com 108 data_sensitivity: 109 - interaction 110 expires: never 111 112 # Microsurvey 113 microsurvey: 114 shown: 115 type: event 116 description: | 117 The survey surface was shown and visible. 118 extra_keys: 119 survey_id: 120 description: The id of the survey. 121 type: string 122 bugs: 123 - https://bugzilla.mozilla.org/show_bug.cgi?id=1905435 124 data_reviews: 125 - https://phabricator.services.mozilla.com/D215259 126 notification_emails: 127 - android-probes@mozilla.com 128 data_sensitivity: 129 - interaction 130 expires: never 131 132 privacy_notice_tapped: 133 type: event 134 description: | 135 Records that the user tapped on the privacy notice. 136 extra_keys: 137 survey_id: 138 description: The id of the survey. 139 type: string 140 bugs: 141 - https://bugzilla.mozilla.org/show_bug.cgi?id=1905435 142 data_reviews: 143 - https://phabricator.services.mozilla.com/D215259 144 notification_emails: 145 - android-probes@mozilla.com 146 data_sensitivity: 147 - interaction 148 expires: never 149 150 dismiss_button_tapped: 151 type: event 152 description: | 153 Records that the user tapped on the close button to dismiss the survey. 154 extra_keys: 155 survey_id: 156 description: The id of the survey. 157 type: string 158 bugs: 159 - https://bugzilla.mozilla.org/show_bug.cgi?id=1905435 160 data_reviews: 161 - https://phabricator.services.mozilla.com/D215259 162 notification_emails: 163 - android-probes@mozilla.com 164 data_sensitivity: 165 - interaction 166 expires: never 167 168 confirmation_shown: 169 type: event 170 description: | 171 Records that the confirmation message in the survey has been viewed by the user. 172 extra_keys: 173 survey_id: 174 description: The id of the survey. 175 type: string 176 bugs: 177 - https://bugzilla.mozilla.org/show_bug.cgi?id=1905435 178 data_reviews: 179 - https://phabricator.services.mozilla.com/D215259 180 notification_emails: 181 - android-probes@mozilla.com 182 expires: never 183 184 submit_button_tapped: 185 type: event 186 description: User response data for a micro survey. 187 extra_keys: 188 survey_id: 189 description: The id of the survey. 190 type: string 191 user_selection: 192 description: | 193 The users selected option. For example, possible values are: 194 "Very satisfied", "satisfied", "neutral", "dissatisfied" and "Very dissatisfied". 195 type: string 196 bugs: 197 - https://bugzilla.mozilla.org/show_bug.cgi?id=1891509 198 - https://bugzilla.mozilla.org/show_bug.cgi?id=1895560 199 data_reviews: 200 - https://bugzilla.mozilla.org/show_bug.cgi?id=1891509 201 - https://bugzilla.mozilla.org/show_bug.cgi?id=1895560 202 data_sensitivity: 203 - interaction 204 notification_emails: 205 - android-probes@mozilla.com 206 expires: never