forked from mozilla/probe-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
repositories.yaml
1174 lines (1126 loc) · 36.6 KB
/
repositories.yaml
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
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
# The version tag is used to distinguish for the legacy repositories.yaml format
# that some probe-scraper code still expects. We downgrade to the old format
# where necessary.
version: "2"
# See https://mozilla.github.io/probe-scraper/#tag/library
libraries:
- library_name: glean-core
description: Modern cross-platform telemetry (core library)
notification_emails:
url: https://github.com/mozilla/glean
metrics_files:
- glean-core/metrics.yaml
ping_files:
- glean-core/pings.yaml
variants:
- v1_name: glean-core
branch: main
dependency_name: glean-core
- library_name: glean-android
description: Modern cross-platform telemetry (Android-specific)
notification_emails:
url: https://github.com/mozilla/glean
metrics_files:
- glean-core/android/metrics.yaml
variants:
- v1_name: glean-android
branch: main
dependency_name: org.mozilla.components:service-glean
- library_name: lib-crash
description: >-
A generic crash reporter component that can report crashes to multiple
services
notification_emails:
url: https://github.com/mozilla-mobile/firefox-android
metrics_files:
- android-components/components/lib/crash/metrics.yaml
ping_files:
- android-components/components/lib/crash/pings.yaml
variants:
- v1_name: lib-crash
dependency_name: org.mozilla.components:lib-crash
- library_name: sync
description: Sync telemetry helper functionality
notification_emails:
url: https://github.com/mozilla-mobile/firefox-android
metrics_files:
- android-components/components/support/sync-telemetry/metrics.yaml
ping_files:
- android-components/components/support/sync-telemetry/pings.yaml
variants:
- v1_name: sync
dependency_name: org.mozilla.components:support-sync-telemetry
- library_name: engine-gecko
description: GeckoView metrics
notification_emails:
url: https://github.com/mozilla/gecko-dev
metrics_files:
- toolkit/components/telemetry/geckoview/streaming/metrics.yaml
variants:
- v1_name: engine-gecko
branch: release
dependency_name: org.mozilla.components:browser-engine-gecko
- v1_name: engine-gecko-beta
branch: beta
dependency_name: org.mozilla.components:browser-engine-gecko-beta
- v1_name: engine-gecko-nightly
dependency_name: org.mozilla.components:browser-engine-gecko-nightly
- library_name: logins-store
description: >-
A collection of Android libraries to build browsers or browser-like
applications
notification_emails:
url: https://github.com/mozilla/application-services
metrics_files:
- components/logins/android/metrics.yaml
variants:
- v1_name: logins-store
branch: main
dependency_name: org.mozilla.appservices:logins
- library_name: support-migration
description: >-
Helper code to migrate from a Fennec-based (Firefox for Android) app to
an Android Components based app
notification_emails:
url: https://github.com/mozilla-mobile/android-components
metrics_files:
- components/support/migration/metrics.yaml
ping_files:
- components/support/migration/pings.yaml
variants:
- v1_name: support-migration
dependency_name: org.mozilla.components:support-migration
deprecated: true
- library_name: android-places
description: >-
A collection of Android libraries to build browsers or browser-like
applications
notification_emails:
url: https://github.com/mozilla/application-services
metrics_files:
- components/places/android/metrics.yaml
variants:
- v1_name: android-places
branch: main
dependency_name: org.mozilla.components:places
- library_name: glean-js
description: Modern cross-platform telemetry (Javascript library)
notification_emails:
url: https://github.com/mozilla/glean.js
metrics_files:
- glean/src/metrics.yaml
ping_files:
- glean/src/pings.yaml
variants:
- v1_name: glean-js
branch: main
dependency_name: glean-js
- library_name: nimbus
description: Rapid experimentation platform
notification_emails:
url: https://github.com/mozilla/application-services
metrics_files:
- components/nimbus/metrics.yaml
variants:
- v1_name: nimbus
branch: main
dependency_name: nimbus
- library_name: gecko
description: The browser engine developed by Mozilla
notification_emails:
url: https://github.com/mozilla/gecko-dev
metrics_files:
- browser/base/content/metrics.yaml
- dom/media/metrics.yaml
- dom/media/webrtc/metrics.yaml
- dom/metrics.yaml
- gfx/metrics.yaml
- mobile/android/actors/metrics.yaml
- netwerk/metrics.yaml
- netwerk/protocol/http/metrics.yaml
- toolkit/components/cookiebanners/metrics.yaml
- toolkit/components/glean/metrics.yaml
- toolkit/components/pdfjs/metrics.yaml
- toolkit/components/processtools/metrics.yaml
- xpcom/metrics.yaml
ping_files:
- dom/pings.yaml
- toolkit/components/glean/pings.yaml
tag_files:
- toolkit/components/glean/tags.yaml
variants:
- v1_name: gecko
dependency_name: gecko
# See https://mozilla.github.io/probe-scraper/#tag/application
applications:
- app_name: firefox_desktop
canonical_app_name: Firefox for Desktop
app_description: The desktop version of Firefox
url: https://github.com/mozilla/gecko-dev
notification_emails:
metrics_files:
- browser/components/metrics.yaml
- browser/components/newtab/metrics.yaml
- browser/components/search/metrics.yaml
- browser/components/urlbar/metrics.yaml
- browser/modules/metrics.yaml
- toolkit/components/crashes/metrics.yaml
- toolkit/components/extensions/metrics.yaml
- toolkit/components/nimbus/metrics.yaml
- toolkit/components/search/metrics.yaml
- toolkit/components/telemetry/dap/metrics.yaml
- toolkit/components/telemetry/metrics.yaml
- toolkit/modules/metrics.yaml
- toolkit/xre/metrics.yaml
- widget/cocoa/metrics.yaml
ping_files:
- browser/components/newtab/pings.yaml
- toolkit/components/crashes/pings.yaml
- toolkit/components/telemetry/pings.yaml
- toolkit/modules/pings.yaml
tag_files:
- toolkit/components/glean/tags.yaml
dependencies:
- gecko
- glean-core
# does not actually depend on glean-android, including for backwards
# compat
- org.mozilla.components:service-glean
channels:
- v1_name: firefox-desktop
app_id: firefox.desktop
moz_pipeline_metadata:
pageload:
expiration_policy:
delete_after_days: 120
- app_name: firefox_desktop_background_update
canonical_app_name: Firefox for Desktop Background Update Task
app_description: >-
Firefox Desktop's background update task. This is
considered a separate application because it has its own client
id and sends its own version of the standard pings.
url: https://github.com/mozilla/gecko-dev
notification_emails:
metrics_files:
- toolkit/components/crashes/metrics.yaml
- toolkit/mozapps/update/metrics.yaml
ping_files:
- toolkit/components/crashes/pings.yaml
- toolkit/mozapps/update/pings.yaml
tag_files:
- toolkit/components/glean/tags.yaml
dependencies:
- gecko
- glean-core
channels:
- v1_name: firefox-desktop-background-update
app_id: firefox.desktop.background.update
- app_name: pine
canonical_app_name: Pinebuild
app_description: >-
The pine build of mozilla-central.
url: https://github.com/mozilla/gecko-dev
notification_emails:
metrics_files:
- browser/components/metrics.yaml
- browser/components/newtab/metrics.yaml
- browser/components/search/metrics.yaml
- browser/modules/metrics.yaml
- toolkit/components/extensions/metrics.yaml
- toolkit/components/search/metrics.yaml
- toolkit/components/telemetry/metrics.yaml
- toolkit/xre/metrics.yaml
ping_files:
- browser/components/newtab/pings.yaml
- toolkit/components/telemetry/pings.yaml
tag_files:
- toolkit/components/glean/tags.yaml
dependencies:
- gecko
- glean-core
# does not actually depend on glean-android, including for backwards
# compat
- org.mozilla.components:service-glean
channels:
- v1_name: pine
app_id: pine
skip_documentation: true
- app_name: fenix
app_description: Firefox for Android (Fenix)
canonical_app_name: Firefox for Android
url: https://github.com/mozilla-mobile/firefox-android
notification_emails:
metrics_files:
- fenix/app/metrics.yaml
ping_files:
- fenix/app/pings.yaml
tag_files:
- fenix/app/tags.yaml
dependencies:
- gecko
- glean-core
- org.mozilla.components:service-glean
- org.mozilla.components:lib-crash
- org.mozilla.components:support-sync-telemetry
- org.mozilla.appservices:logins
- org.mozilla.components:support-migration
- org.mozilla.components:places
- nimbus
moz_pipeline_metadata:
topsites-impression:
expiration_policy:
delete_after_days: 30
override_attributes:
- name: "geo_city"
value: null
submission_timestamp_granularity: "seconds"
spoc:
expiration_policy:
delete_after_days: 180
channels:
- v1_name: firefox-android-release
app_id: org.mozilla.firefox
app_channel: release
additional_dependencies:
- org.mozilla.components:browser-engine-gecko
description: >-
Release channel of Firefox for Android.
- v1_name: firefox-android-beta
app_id: org.mozilla.firefox_beta
app_channel: beta
additional_dependencies:
- org.mozilla.components:browser-engine-gecko-beta
description: >-
Beta channel of Firefox for Android.
- v1_name: fenix
app_id: org.mozilla.fenix
app_channel: nightly
additional_dependencies:
- org.mozilla.components:browser-engine-gecko-beta
description: >-
Nightly channel of Firefox for Android.
Prior to June 2020, this app_id was used for the beta channel
of Firefox Preview.
- v1_name: fenix-nightly
app_id: org.mozilla.fenix.nightly
app_channel: nightly
deprecated: true
additional_dependencies:
- org.mozilla.components:browser-engine-gecko-nightly
description: >-
Nightly channel of Firefox Preview.
- v1_name: firefox-android-nightly
app_id: org.mozilla.fennec.aurora
app_channel: nightly
deprecated: true
additional_dependencies:
- org.mozilla.components:browser-engine-gecko-beta
description: >-
Nightly channel of Firefox for Android users migrated to Fenix;
delisted in June 2020.
- app_name: firefox_ios
canonical_app_name: Firefox for iOS
app_description: Firefox for iOS
notification_emails:
url: https://github.com/mozilla-mobile/firefox-ios
metrics_files:
- Client/metrics.yaml
- Storage/metrics.yaml
# The Sync/* files are meant to be a stop-gap measure, see
# https://mozilla-hub.atlassian.net/browse/SYNC-3008, until
# the Sync component from A-S is able to send Glean metrics.
- Sync/metrics.yaml
ping_files:
- Client/pings.yaml
# The Sync/* files are meant to be a stop-gap measure, see
# https://mozilla-hub.atlassian.net/browse/SYNC-3008, until
# the Sync component from A-S is able to send Glean metrics.
- Sync/pings.yaml
tag_files:
- Client/tags.yaml
branch: main
dependencies:
- glean-core
# does not actually depend on glean-android, including for backwards
# compat
- org.mozilla.components:service-glean
- nimbus
- org.mozilla.appservices:logins
moz_pipeline_metadata:
topsites-impression:
expiration_policy:
delete_after_days: 30
override_attributes:
- name: "geo_city"
value: null
submission_timestamp_granularity: "seconds"
channels:
- v1_name: firefox-ios-release
app_id: org.mozilla.ios.Firefox
app_channel: release
description: >-
Release channel of Firefox for iOS.
- v1_name: firefox-ios-beta
app_id: org.mozilla.ios.FirefoxBeta
app_channel: beta
description: >-
Beta channel of Firefox for iOS.
- v1_name: firefox-ios-dev
app_id: org.mozilla.ios.Fennec
app_channel: nightly
description: >-
Nightly channel of Firefox for iOS.
- app_name: reference_browser
canonical_app_name: Reference Browser
app_description: >-
A full-featured browser reference implementation using Mozilla Android
Components
notification_emails:
url: https://github.com/mozilla-mobile/reference-browser
prototype: true
metrics_files:
- app/metrics.yaml
dependencies:
- glean-core
- org.mozilla.components:service-glean
- org.mozilla.components:lib-crash
channels:
- v1_name: reference-browser
app_id: org.mozilla.reference.browser
- app_name: firefox_fire_tv
canonical_app_name: Firefox for Fire TV
app_description: Firefox for Amazon's Fire TV
deprecated: true
notification_emails:
url: https://github.com/mozilla-mobile/firefox-tv
metrics_files:
- app/metrics.yaml
dependencies:
- glean-core
- org.mozilla.components:service-glean
channels:
- v1_name: firefox-for-fire-tv
app_id: org.mozilla.tv.firefox
- app_name: firefox_reality
canonical_app_name: Firefox Reality
app_description: >-
A fast and secure browser for standalone virtual-reality and
augmented-reality headsets
deprecated: true
notification_emails:
branch: main
url: https://github.com/MozillaReality/FirefoxReality
metrics_files:
- app/metrics.yaml
ping_files:
- app/pings.yaml
dependencies:
- glean-core
- org.mozilla.components:service-glean
- org.mozilla.components:support-sync-telemetry
channels:
- v1_name: firefox-reality
app_id: org.mozilla.vrbrowser
- app_name: lockwise_android
canonical_app_name: Lockwise for Android
app_description: >-
Firefox's Lockwise app for Android
deprecated: true
notification_emails:
url: https://github.com/mozilla-lockwise/lockwise-android
metrics_files:
- app/metrics.yaml
dependencies:
- glean-core
- org.mozilla.components:service-glean
- org.mozilla.components:support-sync-telemetry
channels:
- v1_name: lockwise-android
app_id: mozilla.lockbox
- app_name: lockwise_ios
canonical_app_name: Lockwise for iOS
app_description: >-
Firefox's Lockwise app for iOS
deprecated: true
notification_emails:
url: https://github.com/mozilla-lockwise/lockwise-ios
dependencies:
- glean-core
- org.mozilla.components:service-glean
channels:
- v1_name: lockwise-ios
app_id: org.mozilla.ios.Lockbox
- app_name: mozregression
canonical_app_name: mozregression
app_description: Regression range finder for Mozilla nightly builds
notification_emails:
url: https://github.com/mozilla/mozregression
metrics_files:
- mozregression/metrics.yaml
ping_files:
- mozregression/pings.yaml
dependencies:
- glean-core
# does not actually depend on glean-android, including for backwards
# compat
- org.mozilla.components:service-glean
channels:
- v1_name: mozregression
app_id: org.mozilla.mozregression
- app_name: burnham
canonical_app_name: Burnham
app_description: Automated end-to-end testing for Mozilla's Glean telemetry
notification_emails:
url: https://github.com/mozilla/burnham
branch: main
metrics_files:
- application/src/burnham/config/metrics.yaml
ping_files:
- application/src/burnham/config/pings.yaml
tag_files:
- application/src/burnham/config/tags.yaml
dependencies:
- glean-core
# does not actually depend on glean-android, including for backwards
# compat
- org.mozilla.components:service-glean
prototype: false
channels:
- v1_name: burnham
app_id: burnham
- app_name: mozphab
canonical_app_name: mozphab
app_description: Phabricator review submission/management tool
notification_emails:
url: https://github.com/mozilla-conduit/review
metrics_files:
- mozphab/metrics.yaml
ping_files:
- mozphab/pings.yaml
dependencies:
- glean-core
# does not actually depend on glean-android, including for backwards
# compat
- org.mozilla.components:service-glean
channels:
- v1_name: mozphab
app_id: mozphab
- app_name: firefox_echo_show
canonical_app_name: Firefox for Echo Show
app_description: Firefox for Amazon's Echo Show
deprecated: true
url: https://github.com/mozilla-mobile/firefox-echo-show
notification_emails:
metrics_files:
- app/metrics.yaml
dependencies:
- glean-core
- org.mozilla.components:service-glean
channels:
- v1_name: firefox-for-echo-show
app_id: org.mozilla.connect.firefox
- app_name: firefox_reality_pc
canonical_app_name: Firefox Reality for PC-connected VR platforms
app_description: Firefox Reality for PC-connected VR platforms
deprecated: true
url: https://github.com/MozillaReality/FirefoxRealityPC
notification_emails:
metrics_files:
- Source/FirefoxRealityUnity/metrics.yaml
ping_files:
- Source/FirefoxRealityUnity/pings.yaml
dependencies:
- glean-core
channels:
- v1_name: firefox-reality-pc
app_id: org.mozilla.firefoxreality
- app_name: mach
canonical_app_name: mach
app_description: Mach build telemetry
url: https://github.com/mozilla/gecko-dev
notification_emails:
metrics_files:
- python/mach/metrics.yaml
ping_files:
- python/mach/pings.yaml
dependencies:
- glean-core
# does not actually depend on glean-android, including for backwards
# compat
- org.mozilla.components:service-glean
channels:
- v1_name: mach
app_id: mozilla-mach
- app_name: focus_ios
canonical_app_name: Firefox Focus for iOS
app_description: Firefox Focus on iOS. Klar is the sibling application
url: https://github.com/mozilla-mobile/focus-ios
notification_emails:
branch: main
metrics_files:
- Blockzilla/metrics.yaml
dependencies:
- glean-core
- nimbus
moz_pipeline_metadata_defaults:
expiration_policy:
delete_after_days: 720
channels:
- v1_name: firefox-focus-ios
app_id: org.mozilla.ios.Focus
- app_name: klar_ios
canonical_app_name: Firefox Klar for iOS
app_description: Firefox Klar on iOS. Focus is the sibling application
url: https://github.com/mozilla-mobile/focus-ios
notification_emails:
branch: main
metrics_files:
- Blockzilla/metrics.yaml
dependencies:
- glean-core
- nimbus
moz_pipeline_metadata_defaults:
expiration_policy:
delete_after_days: 720
channels:
- v1_name: firefox-klar-ios
app_id: org.mozilla.ios.Klar
- app_name: focus_android
canonical_app_name: Firefox Focus for Android
app_description: Firefox Focus on Android. Klar is the sibling application
url: https://github.com/mozilla-mobile/firefox-android
notification_emails:
branch: main
metrics_files:
- focus-android/app/metrics.yaml
ping_files:
- focus-android/app/pings.yaml
dependencies:
- glean-core
- org.mozilla.components:service-glean
- org.mozilla.components:lib-crash
- nimbus
- gecko
moz_pipeline_metadata_defaults:
expiration_policy:
delete_after_days: 180
channels:
- v1_name: firefox-focus-android
app_id: org.mozilla.focus
app_channel: release
description: >-
Release channel of Focus for Android.
- v1_name: firefox-focus-android-beta
app_id: org.mozilla.focus.beta
app_channel: beta
description: >-
Beta channel of Focus for Android.
- v1_name: firefox-focus-android-nightly
app_id: org.mozilla.focus.nightly
app_channel: nightly
description: >-
Nightly channel of Focus for Android.
- app_name: klar_android
canonical_app_name: Firefox Klar for Android
app_description: Firefox Klar on Android. Focus is the sibling application
url: https://github.com/mozilla-mobile/firefox-android
notification_emails:
branch: main
metrics_files:
- focus-android/app/metrics.yaml
ping_files:
- focus-android/app/pings.yaml
dependencies:
- glean-core
- org.mozilla.components:service-glean
- org.mozilla.components:lib-crash
- nimbus
- gecko
moz_pipeline_metadata_defaults:
expiration_policy:
delete_after_days: 180
channels:
- v1_name: firefox-klar-android
app_id: org.mozilla.klar
- app_name: bergamot
canonical_app_name: Bergamot Translator
app_description: Web extension for on-device machine translation
deprecated: true
url: https://github.com/mozilla-extensions/firefox-translations
notification_emails:
branch: legacy
metrics_files:
- src/core/ts/background-scripts/background.js/telemetry/metrics.yaml
ping_files:
- src/core/ts/background-scripts/background.js/telemetry/pings.yaml
dependencies:
- glean-js
moz_pipeline_metadata_defaults:
expiration_policy:
delete_after_days: 180
channels:
- v1_name: bergamot
app_id: org.mozilla.bergamot
- app_name: firefox_translations
canonical_app_name: Firefox Translations
app_description: Web extension for on-device machine translation
url: https://github.com/mozilla/firefox-translations
notification_emails:
branch: main
metrics_files:
- extension/model/telemetry/metrics.yaml
ping_files:
- extension/model/telemetry/pings.yaml
dependencies:
- glean-js
moz_pipeline_metadata_defaults:
expiration_policy:
delete_after_days: 180
channels:
- v1_name: firefox-translations
app_id: firefox-translations
- app_name: rally_debug
canonical_app_name: Rally Core Add-on Debug Ingestion
app_description: Rally Core Add-on debug ingestion
prototype: true
url: https://github.com/mozilla-rally/rally-core-addon
notification_emails:
branch: master
metrics_files:
- metrics.yaml
ping_files:
- pings.yaml
dependencies:
- glean-js
moz_pipeline_metadata_defaults:
expiration_policy:
delete_after_days: 180
collect_through_date: "2023-03-27"
jwe_mappings:
- source_field_path: /payload
decrypted_field_path: ""
channels:
- v1_name: rally-debug
app_id: rally.debug
deprecated: true
skip_documentation: true
- app_name: rally_core
canonical_app_name: Rally Core Add-on and Web Platform
app_description: |
The Rally Core Add-on and Web Platform orchestrates the
installation and the lifecycle of [Rally](https://rally.mozilla.org/)
studies.
url: https://github.com/mozilla-rally/rally
notification_emails:
branch: main
metrics_files:
- web-platform/glean/metrics.yaml
ping_files:
- web-platform/glean/pings.yaml
dependencies:
- glean-js
moz_pipeline_metadata_defaults:
jwe_mappings:
- source_field_path: /payload
decrypted_field_path: ""
expiration_policy:
collect_through_date: "2023-03-27"
channels:
- v1_name: rally-core
app_id: rally-core
skip_documentation: true
- app_name: mozilla_vpn
canonical_app_name: Mozilla VPN
app_description: |
Mozilla VPN is a VPN client application. The first
Mozilla premium service.
url: https://github.com/mozilla-mobile/mozilla-vpn-client
notification_emails:
branch: main
metrics_files:
- src/shared/telemetry/metrics.yaml
- src/shared/telemetry/metrics_deprecated.yaml
- src/apps/vpn/telemetry/metrics.yaml
- src/apps/vpn/telemetry/metrics_deprecated.yaml
ping_files:
- src/shared/telemetry/pings.yaml
- src/shared/telemetry/pings_deprecated.yaml
- src/apps/vpn/telemetry/pings.yaml
dependencies: [] # Empty. Dependencies are set per channel.
moz_pipeline_metadata_defaults:
expiration_policy:
delete_after_days: 180
channels:
- v1_name: mozilla-vpn
app_id: mozillavpn
app_channel: release
additional_dependencies:
- glean-js
- v1_name: mozilla-vpn-android
app_id: org.mozilla.firefox.vpn
app_channel: release
description: Mozilla VPN (Android)
additional_dependencies:
- glean-core
- org.mozilla.components:service-glean
- app_name: rally_study_zero_one
canonical_app_name: Rally Study-01
app_description: |
This is an exploratory study on what sites people
use and how long they use them, for the Rally
platform. It is implemented as a cross-browser
WebExtension.
url: https://github.com/mozilla-rally/rally-study-01
notification_emails:
branch: master
metrics_files:
- metrics.yaml
ping_files:
- pings.yaml
dependencies:
- glean-js
moz_pipeline_metadata_defaults:
jwe_mappings:
- source_field_path: /payload
decrypted_field_path: ""
expiration_policy:
collect_through_date: "2022-12-31"
channels:
- v1_name: rally-study-zero-one
app_id: rally-study-zero-one
skip_documentation: true
- app_name: mlhackweek_search
canonical_app_name: ML Hack Week Search App
app_description: |
This application collects search terms and results to build a data set
for a Data Org Hack Week.
url: https://github.com/mozilla/mlhackweek2021
notification_emails:
branch: main
metrics_files:
- searchapp/mysite/searchranking/glean_config/metrics.yaml
ping_files:
- searchapp/mysite/searchranking/glean_config/pings.yaml
dependencies:
- glean-core
channels:
- v1_name: mlhackweek-search
app_id: mlhackweek-search
skip_documentation: true
- app_name: regrets_reporter
canonical_app_name: RegretsReporter
app_description: |
The RegretsReporter extension gives you a way to easily report bad or
unwanted YouTube recommended videos to control your YouTube
experience and power Mozilla’s research into YouTube’s recommendation
algorithm.
url: https://github.com/mozilla-extensions/regrets-reporter
notification_emails:
branch: main
metrics_files:
- source/telemetry/metrics.yaml
ping_files:
- source/telemetry/pings.yaml
dependencies:
- glean-js
moz_pipeline_metadata_defaults:
expiration_policy:
delete_after_days: 730
channels:
- v1_name: regrets-reporter-ucs
app_id: regrets.reporter.ucs
- app_name: rally_markup_fb_pixel_hunt
canonical_app_name: Rally Facebook Pixel Hunt
app_description: |
In a collaboration between journalists at the Markup and Mozilla,
this study seeks to map Facebook’s pixel tracking network and
understand the kinds of information it collects on sites across
the web. The Markup will use the data collected in this study
to create investigative journalism around the kinds of information
Facebook collects about you, and where.
url: https://github.com/mozilla-rally/facebook-pixel-hunt
notification_emails:
branch: main
metrics_files:
- metrics.yaml
ping_files:
- pings.yaml
dependencies:
- glean-js
moz_pipeline_metadata_defaults:
jwe_mappings:
- source_field_path: /payload
decrypted_field_path: ""
expiration_policy:
collect_through_date: "2022-07-13"
channels:
- v1_name: rally-markup-fb-pixel-hunt
app_id: rally-markup-fb-pixel-hunt
skip_documentation: true
- app_name: glean_dictionary
canonical_app_name: Glean Dictionary
app_description: |
The Glean Dictionary documents the data collected
by Mozilla projects that use Glean.
url: https://github.com/mozilla/glean-dictionary
notification_emails:
branch: main
metrics_files:
- src/telemetry/metrics.yaml
ping_files:
- src/telemetry/pings.yaml
dependencies:
- glean-js
moz_pipeline_metadata_defaults:
expiration_policy:
delete_after_days: 180
channels:
- v1_name: glean-dictionary
app_id: glean-dictionary
- app_name: mdn_yari
canonical_app_name: Mozilla Developer Network
app_description: |