File: core.yaml

package info (click to toggle)
glean-parser 15.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,260 kB
  • sloc: python: 7,033; ruby: 100; makefile: 87
file content (393 lines) | stat: -rw-r--r-- 9,453 bytes parent folder | download
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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
# Any copyright is dedicated to the Public Domain.
# https://creativecommons.org/publicdomain/zero/1.0/

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

telemetry:
  client_id:
    type: uuid
    lifetime: user
    description: >
      A UUID identifying a profile and allowing user-oriented
      Correlation of data.
      Some Unicode: جمع 搜集
    bugs:
      - https://bugzilla.mozilla.org/1137353
    data_reviews:
      - http://example.com/reviews
      - http://example.com/other_reviews
    notification_emails:
      - CHANGE-ME@example.com
    send_in_pings:
      - core
      - glean_client_info
    expires: 2100-01-01

  event_example:
    type: event
    description: >
      Just testing events
    bugs:
      - https://bugzilla.mozilla.org/1123456789
    data_reviews:
      - http://example.com/reviews
    notification_emails:
      - CHANGE-ME@example.com
    extra_keys:
      key1:
        description: "This is key one"
        type: string
      key2:
        description: "This is key two"
        type: string
    expires: never

  preference_toggled:
    type: event
    description: |
      Just testing events
    bugs:
      - https://bugzilla.mozilla.org/1123456789
    data_reviews:
      - http://example.com/reviews
    notification_emails:
      - CHANGE-ME@example.com
    extra_keys:
      preference:
        type: string
        description: "This is key one"
      enabled:
        type: boolean
        description: "This is key two"
      swapped:
        type: quantity
        description: "This is key three"
    expires: never

core_ping:
  seq:
    type: counter
    lifetime: application
    description: >
      Running ping counter for this ping. This works as a sequence
      number to allow detecting for missing send_in_pings.
    bugs:
      - https://bugzilla.mozilla.org/11137353
    data_reviews:
      - http://example.com/reviews
    notification_emails:
      - CHANGE-ME@example.com
    send_in_pings:
      - core
    expires: 2100-01-01

  created:
    type: datetime
    time_unit: day
    description: >
      The date the ping was created.
    bugs:
      - https://bugzilla.mozilla.org/11137353
    data_reviews:
      - http://example.com/reviews
    notification_emails:
      - CHANGE-ME@example.com
    send_in_pings:
      - core
    expires: 2100-01-01

  sessions:
    type: counter
    description: >
      The number of sessions since the last upload.
    bugs:
      - https://bugzilla.mozilla.org/11137353
    data_reviews:
      - http://example.com/reviews
    notification_emails:
      - CHANGE-ME@example.com
    send_in_pings:
      - core
    expires: 2100-01-01

  durations:
    type: timespan
    description: >
      The combined duration, in seconds, of all the sessions
      since the last upload.
    time_unit: second
    bugs:
      - https://bugzilla.mozilla.org/11137353
    data_reviews:
      - http://example.com/reviews
    notification_emails:
      - CHANGE-ME@example.com
    send_in_pings:
      - core
    expires: 2100-01-01

  searches:
    type: labeled_counter
    description: >
      The search use counts for each search source and engine
      combination, e.g. “engine.source” = 3.
    labels:
      - this.is.fine
      - this_is_fine_too
      - this.is_still_fine
      - thisisfine
      - _.is_fine
      - this.is-fine
      - this-is-fine
    bugs:
      - https://bugzilla.mozilla.org/11137353
    data_reviews:
      - http://example.com/reviews
    notification_emails:
      - CHANGE-ME@example.com
    send_in_pings:
      - core
    expires: 2100-01-01

  flash_usage:
    type: counter
    description: >
      The number of times the flash plugin was used since the last
      upload.
    bugs:
      - https://bugzilla.mozilla.org/11137353
    data_reviews:
      - http://example.com/reviews
    notification_emails:
      - CHANGE-ME@example.com
    send_in_pings:
      - core
    expires: 2100-01-01

  default_browser:
    type: boolean
    description: >
      True if the user has set Firefox as the default browser.
    bugs:
      - https://bugzilla.mozilla.org/11137353
    data_reviews:
      - http://example.com/reviews
    notification_emails:
      - CHANGE-ME@example.com
    send_in_pings:
      - core
    expires: 2100-01-01

environment:
  locale:
    type: string
    lifetime: application
    description: The application locale, e.g. “en-US”.
    bugs:
      - https://bugzilla.mozilla.org/11137353
    data_reviews:
      - http://example.com/reviews
    notification_emails:
      - CHANGE-ME@example.com
    send_in_pings:
      - core
    expires: 2100-01-01

  os:
    type: string
    lifetime: application
    description: The name of the operating system.
    bugs:
      - https://bugzilla.mozilla.org/11137353
    data_reviews:
      - http://example.com/reviews
    notification_emails:
      - CHANGE-ME@example.com
    send_in_pings:
      - core
    expires: 2100-01-01

  os_version:
    type: string
    lifetime: application
    description: The version of the operating system.
    bugs:
      - https://bugzilla.mozilla.org/11137353
    data_reviews:
      - http://example.com/reviews
    notification_emails:
      - CHANGE-ME@example.com
    send_in_pings:
      - core
    expires: 2100-01-01

  device:
    type: string
    lifetime: application
    description: >
      Build.MANUFACTURER + " - " + Build.MODEL, where manufacturer is
      truncated to 12 characters & model is truncated to 19
      characters.
    bugs:
      - https://bugzilla.mozilla.org/11137353
    data_reviews:
      - http://example.com/reviews
    notification_emails:
      - CHANGE-ME@example.com
    send_in_pings:
      - core
    expires: 2100-01-01

  arch:
    type: string
    lifetime: application
    description: The architecture of the device.
    bugs:
      - https://bugzilla.mozilla.org/11137353
    data_reviews:
      - http://example.com/reviews
    notification_emails:
      - CHANGE-ME@example.com
    expires: 2100-01-01

  profile_date:
    type: datetime
    lifetime: user
    description: Profile creation date.
    time_unit: day
    bugs:
      - https://bugzilla.mozilla.org/11137353
    data_reviews:
      - http://example.com/reviews
    notification_emails:
      - CHANGE-ME@example.com
    send_in_pings:
      - core
    expires: 2100-01-01

  default_search:
    type: string
    lifetime: application
    description: >
      Identifier of the default search engine, e.g. “yahoo”.
    bugs:
      - https://bugzilla.mozilla.org/11137353
    data_reviews:
      - http://example.com/reviews
    notification_emails:
      - CHANGE-ME@example.com
    send_in_pings:
      - core
    expires: 2100-01-01

  display_version:
    type: string
    lifetime: application
    description: >
      Version displayed to the user, e.g. “57.0b2”.
    bugs:
      - https://bugzilla.mozilla.org/11137353
    data_reviews:
      - http://example.com/reviews
    notification_emails:
      - CHANGE-ME@example.com
    send_in_pings:
      - core
    expires: 2100-01-01

  distribution_id:
    type: string
    lifetime: application
    description: >
      Distribution identifier, e.g. “lollipop”.
    bugs:
      - https://bugzilla.mozilla.org/11137353
    data_reviews:
      - http://example.com/reviews
    notification_emails:
      - CHANGE-ME@example.com
    send_in_pings:
      - core
    expires: 2100-01-01

  campaign_id:
    type: string
    lifetime: application
    description: >
      Adjust’s campaign identifier.
    bugs:
      - https://bugzilla.mozilla.org/11137353
    data_reviews:
      - http://example.com/reviews
    notification_emails:
      - CHANGE-ME@example.com
    send_in_pings:
      - core
    expires: 2100-01-01

  event_example:
    type: event
    description: >
      Just testing events
    bugs:
      - https://bugzilla.mozilla.org/1123456789
    data_reviews:
      - http://example.com/reviews
    notification_emails:
      - CHANGE-ME@example.com
    extra_keys:
      key1:
        description: "This is key one"
        type: string
      key2:
        description: "This is key two"
        type: string
    expires: 2100-01-01

  event_no_keys:
    type: event
    description: >
      Just testing events
    bugs:
      - https://bugzilla.mozilla.org/1123456789
    data_reviews:
      - http://example.com/reviews
    notification_emails:
      - CHANGE-ME@example.com
    expires: 2100-01-01

dotted.category:
  metric:
    type: string
    lifetime: application
    description: >
      dummy metric
    bugs:
      - https://bugzilla.mozilla.org/11137353
    data_reviews:
      - http://example.com/reviews
    notification_emails:
      - CHANGE-ME@example.com
    expires: 2100-01-01

glean.internal.metrics:
  internal:
    type: string
    lifetime: application
    description: >
      internal metric
      Lorem ipsum dolor sit amet, consectetur adipiscing elit,
      sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

      Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris
      nisi ut aliquip ex ea commodo consequat.
      Duis aute irure dolor in reprehenderit in voluptate velit esse
      cillum dolore eu fugiat nulla pariatur.
    bugs:
      - https://bugzilla.mozilla.org/11137353
    data_reviews:
      - http://example.com/reviews
    notification_emails:
      - CHANGE-ME@example.com
    expires: 2100-01-01