File: metrics.yaml

package info (click to toggle)
thunderbird 1%3A143.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 4,703,968 kB
  • sloc: cpp: 7,770,492; javascript: 5,943,842; ansic: 3,918,754; python: 1,418,263; xml: 653,354; asm: 474,045; java: 183,079; sh: 111,238; makefile: 20,410; perl: 14,359; objc: 13,059; yacc: 4,583; pascal: 3,405; lex: 1,720; ruby: 999; exp: 762; sql: 715; awk: 580; php: 436; lisp: 430; sed: 69; csh: 10
file content (206 lines) | stat: -rw-r--r-- 6,082 bytes parent folder | download | duplicates (8)
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
# 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/.

# This file defines the metrics that are recorded by glean telemetry. They are
# automatically converted to Kotlin code at build time using the `glean_parser`
# PyPI package.
---

$schema: moz://mozilla.org/schemas/glean/metrics/2-0-0

messaging:
  message_shown:
    type: event
    description: |
      A message was shown to the user.
    extra_keys:
      message_key:
        description: The id of the message
        type: string
    bugs:
      - https://github.com/mozilla-mobile/fenix/issues/24224
    data_reviews:
      - https://github.com/mozilla-mobile/fenix/pull/24426
      - https://github.com/mozilla-mobile/firefox-android/pull/1101
    notification_emails:
      - android-probes@mozilla.com
      - cgordon@mozilla.com
    data_sensitivity:
      - interaction
    expires: never
  message_dismissed:
    type: event
    description: |
      A message was dismissed by the user.
    extra_keys:
      message_key:
        description: The id of the message
        type: string
    bugs:
      - https://github.com/mozilla-mobile/fenix/issues/24224
    data_reviews:
      - https://github.com/mozilla-mobile/fenix/issues/24224
      - https://github.com/mozilla-mobile/firefox-android/pull/1101
    notification_emails:
      - android-probes@mozilla.com
      - cgordon@mozilla.com
    data_sensitivity:
      - interaction
    expires: never
  message_clicked:
    type: event
    description: |
      A message was clicked by the user.
    extra_keys:
      message_key:
        description: The id of the message
        type: string
      action_uuid:
        description: The uuid of the action
        type: string
    bugs:
      - https://github.com/mozilla-mobile/fenix/issues/24224
    data_reviews:
      - https://github.com/mozilla-mobile/fenix/issues/24224
      - https://github.com/mozilla-mobile/firefox-android/pull/1101
    notification_emails:
      - android-probes@mozilla.com
      - cgordon@mozilla.com
    data_sensitivity:
      - interaction
    expires: never
  message_expired:
    type: event
    description: |
      A message maxDisplayCount has been surpassed.
    extra_keys:
      message_key:
        description: The id of the message
        type: string
    bugs:
      - https://github.com/mozilla-mobile/fenix/issues/24224
    data_reviews:
      - https://github.com/mozilla-mobile/fenix/issues/24224
      - https://github.com/mozilla-mobile/firefox-android/pull/1101
    notification_emails:
      - android-probes@mozilla.com
      - cgordon@mozilla.com
    data_sensitivity:
      - interaction
    expires: never
  malformed:
    type: event
    description: |
      A message was malformed.
    extra_keys:
      message_key:
        description: The id of the message
        type: string
    bugs:
      - https://github.com/mozilla-mobile/fenix/issues/24224
    data_reviews:
      - https://github.com/mozilla-mobile/fenix/issues/24224
      - https://github.com/mozilla-mobile/firefox-android/pull/1101
    notification_emails:
      - android-probes@mozilla.com
      - cgordon@mozilla.com
    data_sensitivity:
      - interaction
    expires: never

# Microsurvey
microsurvey:
  shown:
    type: event
    description: |
      The survey surface was shown and visible.
    extra_keys:
      survey_id:
        description: The id of the survey.
        type: string
    bugs:
      - https://bugzilla.mozilla.org/show_bug.cgi?id=1905435
    data_reviews:
      - https://phabricator.services.mozilla.com/D215259
    notification_emails:
      - android-probes@mozilla.com
    data_sensitivity:
      - interaction
    expires: never

  privacy_notice_tapped:
    type: event
    description: |
      Records that the user tapped on the privacy notice.
    extra_keys:
      survey_id:
        description: The id of the survey.
        type: string
    bugs:
      - https://bugzilla.mozilla.org/show_bug.cgi?id=1905435
    data_reviews:
      - https://phabricator.services.mozilla.com/D215259
    notification_emails:
      - android-probes@mozilla.com
    data_sensitivity:
      - interaction
    expires: never

  dismiss_button_tapped:
    type: event
    description: |
      Records that the user tapped on the close button to dismiss the survey.
    extra_keys:
      survey_id:
        description: The id of the survey.
        type: string
    bugs:
      - https://bugzilla.mozilla.org/show_bug.cgi?id=1905435
    data_reviews:
      - https://phabricator.services.mozilla.com/D215259
    notification_emails:
      - android-probes@mozilla.com
    data_sensitivity:
      - interaction
    expires: never

  confirmation_shown:
    type: event
    description: |
      Records that the confirmation message in the survey has been viewed by the user.
    extra_keys:
      survey_id:
        description: The id of the survey.
        type: string
    bugs:
      - https://bugzilla.mozilla.org/show_bug.cgi?id=1905435
    data_reviews:
      - https://phabricator.services.mozilla.com/D215259
    notification_emails:
      - android-probes@mozilla.com
    expires: never

  submit_button_tapped:
    type: event
    description: User response data for a micro survey.
    extra_keys:
      survey_id:
        description: The id of the survey.
        type: string
      user_selection:
        description: |
          The users selected option. For example, possible values are:
          "Very satisfied", "satisfied", "neutral", "dissatisfied" and "Very dissatisfied".
        type: string
    bugs:
      - https://bugzilla.mozilla.org/show_bug.cgi?id=1891509
      - https://bugzilla.mozilla.org/show_bug.cgi?id=1895560
    data_reviews:
      - https://bugzilla.mozilla.org/show_bug.cgi?id=1891509
      - https://bugzilla.mozilla.org/show_bug.cgi?id=1895560
    data_sensitivity:
      - interaction
    notification_emails:
      - android-probes@mozilla.com
    expires: never