-
Notifications
You must be signed in to change notification settings - Fork 16
/
namespaces.yaml
15913 lines (15913 loc) · 508 KB
/
namespaces.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
accounts_backend:
explores:
accounts_events:
hidden: true
type: glean_ping_explore
views:
base_view: accounts_events
events:
type: events_explore
views:
base_view: events
extended_view: events_unnested_table
events_stream_table:
type: table_explore
views:
base_view: events_stream_table
glean_app: true
owners:
pretty_name: Mozilla Accounts Backend
spoke: looker-spoke-default
views:
accounts_events:
tables:
- table: mozdata.accounts_backend.accounts_events
type: glean_ping_view
accounts_events_table:
tables:
- channel: null
table: mozdata.accounts_backend.accounts_events
type: table_view
accounts_table:
tables:
- channel: null
table: mozdata.accounts_backend.accounts
type: table_view
events:
tables:
- base_table: mozdata.accounts_backend.events_unnested
events_table_view: events_unnested_table
type: events_view
events_stream_table:
tables:
- channel: null
table: mozdata.accounts_backend.events_stream
type: table_view
events_table:
tables:
- channel: null
table: mozdata.accounts_backend.events
type: table_view
events_unnested_table:
tables:
- channel: null
table: mozdata.accounts_backend.events_unnested
type: table_view
nonprod_accounts_table:
tables:
- channel: null
table: mozdata.accounts_backend.nonprod_accounts
type: table_view
users_services_daily_table:
tables:
- channel: null
table: mozdata.accounts_backend.users_services_daily
type: table_view
users_services_last_seen_table:
tables:
- channel: null
table: mozdata.accounts_backend.users_services_last_seen
type: table_view
accounts_frontend:
explores:
accounts_events:
hidden: true
type: glean_ping_explore
views:
base_view: accounts_events
deletion_request:
type: glean_ping_explore
views:
base_view: deletion_request
events:
type: events_explore
views:
base_view: events
extended_view: events_unnested_table
events_stream_table:
type: table_explore
views:
base_view: events_stream_table
glean_app: true
owners:
pretty_name: Mozilla Accounts Frontend
spoke: looker-spoke-default
views:
accounts_events:
tables:
- table: mozdata.accounts_frontend.accounts_events
type: glean_ping_view
accounts_events_table:
tables:
- channel: null
table: mozdata.accounts_frontend.accounts_events
type: table_view
deletion_request:
tables:
- table: mozdata.accounts_frontend.deletion_request
type: glean_ping_view
deletion_request_table:
tables:
- channel: null
table: mozdata.accounts_frontend.deletion_request
type: table_view
email_first_reg_login_funnels_by_service_table:
tables:
- channel: null
table: mozdata.accounts_frontend.email_first_reg_login_funnels_by_service
type: table_view
events:
tables:
- base_table: mozdata.accounts_frontend.events_unnested
events_table_view: events_unnested_table
type: events_view
events_stream_table:
tables:
- channel: null
table: mozdata.accounts_frontend.events_stream
type: table_view
events_table:
tables:
- channel: null
table: mozdata.accounts_frontend.events
type: table_view
events_unnested_table:
tables:
- channel: null
table: mozdata.accounts_frontend.events_unnested
type: table_view
login_funnels_by_service_table:
tables:
- channel: null
table: mozdata.accounts_frontend.login_funnels_by_service
type: table_view
registration_funnels_by_service_table:
tables:
- channel: null
table: mozdata.accounts_frontend.registration_funnels_by_service
type: table_view
activity_stream:
explores:
event_counts:
type: ping_explore
views:
base_view: events
pocket_tile_impressions:
type: ping_explore
views:
base_view: impression_stats_flat
session_counts:
type: ping_explore
views:
base_view: sessions
glean_app: false
owners:
pretty_name: Activity Stream
spoke: looker-spoke-default
views:
events:
tables:
- table: mozdata.activity_stream.events
type: ping_view
impression_stats_flat:
tables:
- table: mozdata.activity_stream.impression_stats_flat
type: ping_view
sessions:
tables:
- table: mozdata.activity_stream.sessions
type: ping_view
ads:
connection: bigquery-oauth
explores:
metric_definitions_admarketplace:
type: metric_definitions_explore
views:
base_view: metric_definitions_admarketplace
metric_definitions_consolidated_ads_spocs:
type: metric_definitions_explore
views:
base_view: metric_definitions_consolidated_ads_spocs
metric_definitions_ppa_measurements:
type: metric_definitions_explore
views:
base_view: metric_definitions_ppa_measurements
glean_app: false
owners:
pretty_name: Ads
spoke: looker-spoke-private
views:
amp_search_with:
tables:
- table: mozdata.ads.amp_search_with
type: table_view
consolidated_ad_metrics_daily_pt:
tables:
- table: mozdata.ads.consolidated_ad_metrics_daily_pt
type: table_view
consolidated_ad_metrics_hourly:
tables:
- table: mozdata.ads.consolidated_ad_metrics_hourly
type: table_view
metric_definitions_admarketplace:
type: metric_definitions_view
metric_definitions_consolidated_ads_spocs:
type: metric_definitions_view
metric_definitions_ppa_measurements:
type: metric_definitions_view
tiles_addressable_inventory_hourly:
tables:
- table: mozdata.ads.tiles_addressable_inventory_hourly
type: table_view
ads_backend:
explores:
events:
type: events_explore
views:
base_view: events
extended_view: events_unnested_table
events_stream_table:
type: table_explore
views:
base_view: events_stream_table
interaction:
type: glean_ping_explore
views:
base_view: interaction
request_stats:
type: glean_ping_explore
views:
base_view: request_stats
glean_app: true
owners:
pretty_name: Mozilla Ads Backend Service
spoke: looker-spoke-default
views:
events:
tables:
- base_table: mozdata.ads_backend.events_unnested
events_table_view: events_unnested_table
type: events_view
events_stream_table:
tables:
- channel: null
table: mozdata.ads_backend.events_stream
type: table_view
events_table:
tables:
- channel: null
table: mozdata.ads_backend.events
type: table_view
events_unnested_table:
tables:
- channel: null
table: mozdata.ads_backend.events_unnested
type: table_view
interaction:
tables:
- table: mozdata.ads_backend.interaction
type: glean_ping_view
interaction_table:
tables:
- channel: null
table: mozdata.ads_backend.interaction
type: table_view
request_stats:
tables:
- table: mozdata.ads_backend.request_stats
type: glean_ping_view
request_stats_table:
tables:
- channel: null
table: mozdata.ads_backend.request_stats
type: table_view
casa:
connection: bigquery-casa
glean_app: false
owners:
pretty_name: CASA
spoke: looker-spoke-private
views:
projects:
tables:
- table: mozdata.casa.projects
type: table_view
users:
tables:
- table: mozdata.casa.users
type: table_view
combined_browser_metrics:
glean_app: false
owners:
pretty_name: Combined Browser Metrics
spoke: looker-spoke-default
views:
active_users_aggregates:
tables:
- table: moz-fx-data-shared-prod.telemetry.active_users_aggregates
type: table_view
active_users_aggregates_device:
tables:
- table: moz-fx-data-shared-prod.telemetry.active_users_aggregates_device
type: table_view
cohort_daily_statistics:
tables:
- table: moz-fx-data-shared-prod.telemetry.cohort_daily_statistics
type: table_view
fenix_and_firefox_use_counters:
tables:
- table: mozilla-public-data.telemetry_derived.fenix_and_firefox_use_counters
type: table_view
contextual_services:
glean_app: false
owners:
pretty_name: Contextual Services
spoke: looker-spoke-default
views:
sponsored_tiles_ad_request_fill:
tables:
- table: mozdata.telemetry.sponsored_tiles_ad_request_fill
type: table_view
contextual_services_private:
connection: bigquery-oauth
explores:
event_aggregates:
type: ping_explore
views:
base_view: event_aggregates
event_aggregates_spons_tiles:
type: ping_explore
views:
base_view: event_aggregates_spons_tiles
event_aggregates_suggest:
type: ping_explore
views:
base_view: event_aggregates_suggest
quicksuggest_clicks:
type: ping_explore
views:
base_view: quicksuggest_click
quicksuggest_impressions:
type: ping_explore
views:
base_view: quicksuggest_impression
search_terms_daily:
type: ping_explore
views:
base_view: search_terms_daily
topsites_clicks:
type: ping_explore
views:
base_view: topsites_click
topsites_impressions:
type: ping_explore
views:
base_view: topsites_impression
topsites_impressions_fenix:
type: ping_explore
views:
base_view: topsites_impression_fenix
topsites_impressions_firefox_ios:
type: ping_explore
views:
base_view: topsites_impression_firefox_ios
glean_app: false
owners:
pretty_name: Contextual Services
spoke: looker-spoke-private
views:
event_aggregates:
tables:
- table: mozdata.contextual_services.event_aggregates
type: ping_view
event_aggregates_spons_tiles:
tables:
- table: mozdata.contextual_services.event_aggregates_spons_tiles
type: ping_view
event_aggregates_suggest:
tables:
- table: mozdata.contextual_services.event_aggregates_suggest
type: ping_view
final_adM_forecasts:
tables:
- table: moz-fx-data-shared-prod.revenue_derived.final_adm_revenue_forecast
type: table_view
quicksuggest_click:
tables:
- table: mozdata.contextual_services.quicksuggest_click
type: ping_view
quicksuggest_impression:
tables:
- table: mozdata.contextual_services.quicksuggest_impression
type: ping_view
request_payload_suggest:
tables:
- table: mozdata.contextual_services.request_payload_suggest
type: table_view
request_payload_tiles:
tables:
- table: mozdata.contextual_services.request_payload_tiles
type: table_view
search_terms_daily:
tables:
- table: mozdata.search_terms.search_terms_daily
type: ping_view
suggest_revenue_levers_daily:
tables:
- table: mozdata.contextual_services.suggest_revenue_levers_daily
type: table_view
topsites_click:
tables:
- table: mozdata.contextual_services.topsites_click
type: ping_view
topsites_impression:
tables:
- table: mozdata.contextual_services.topsites_impression
type: ping_view
topsites_impression_fenix:
tables:
- channel: release
table: mozdata.fenix.topsites_impression
- channel: beta
table: mozdata.org_mozilla_firefox_beta.topsites_impression
- channel: nightly
table: mozdata.org_mozilla_fenix.topsites_impression
type: ping_view
topsites_impression_firefox_ios:
tables:
- channel: release
table: mozdata.org_mozilla_ios_firefox.topsites_impression
- channel: beta
table: mozdata.org_mozilla_ios_firefoxbeta.topsites_impression
- channel: nightly
table: mozdata.org_mozilla_ios_fennec.topsites_impression
type: ping_view
debug_ping_view:
explores:
deletion_request:
type: glean_ping_explore
views:
base_view: deletion_request
events:
type: events_explore
views:
base_view: events
extended_view: events_unnested_table
events_stream_table:
type: table_explore
views:
base_view: events_stream_table
glean_app: true
owners:
pretty_name: Glean Debug Ping Viewer
spoke: looker-spoke-default
views:
deletion_request:
tables:
- table: mozdata.debug_ping_view.deletion_request
type: glean_ping_view
deletion_request_table:
tables:
- channel: null
table: mozdata.debug_ping_view.deletion_request
type: table_view
events:
tables:
- base_table: mozdata.debug_ping_view.events_unnested
events_table_view: events_unnested_table
type: events_view
events_stream_table:
tables:
- channel: null
table: mozdata.debug_ping_view.events_stream
type: table_view
events_table:
tables:
- channel: null
table: mozdata.debug_ping_view.events
type: table_view
events_unnested_table:
tables:
- channel: null
table: mozdata.debug_ping_view.events_unnested
type: table_view
duet:
explores:
gplay_installs_by_country:
type: table_explore
views:
base_view: gplay_installs_by_country
glean_app: false
owners:
pretty_name: DUET
spoke: looker-spoke-default
views:
app_store_funnel_ios:
tables:
- table: mozdata.firefox_ios.app_store_funnel
type: table_view
fenix_marketing_metrics:
tables:
- table: moz-fx-data-shared-prod.fenix.marketing_attributable_metrics
type: table_view
firefox_ios_campaign_performance:
tables:
- table: mozdata.firefox_ios.ad_activation_performance
type: table_view
firefox_mobile_installs:
tables:
- table: moz-fx-data-marketing-prod.adjust_derived.firefox_mobile_installs_v1
type: table_view
firefox_mobile_installs_adjust_deliverables:
tables:
- table: moz-fx-data-shared-prod.adjust_derived.adjust_deliverables_v1
type: table_view
gplay_installs_by_country:
measures:
total_installs:
sql: ${install_count}
type: sum
total_uninstalls:
sql: ${uninstall_count}
type: sum
total_updates:
sql: ${update_count}
type: sum
tables:
- table: mozdata.fenix.gplay_installs_by_country
type: table_view
install:
tables:
- channel: release
table: mozdata.firefox_installer.install
type: ping_view
new_profile:
tables:
- channel: release
table: mozdata.telemetry.new_profile
type: ping_view
experimentation:
glean_app: false
owners:
pretty_name: Experimentation
spoke: looker-spoke-default
views:
experiment_cumulative_ad_clicks:
tables:
- channel: release
table: mozdata.telemetry.experiment_cumulative_ad_clicks
type: table_view
experiment_cumulative_search_count:
tables:
- channel: release
table: mozdata.telemetry.experiment_cumulative_search_count
type: table_view
experiment_cumulative_search_with_ads_count:
tables:
- channel: release
table: mozdata.telemetry.experiment_cumulative_search_with_ads_count
type: table_view
experiment_enrollment_cumulative_population_estimate:
tables:
- channel: release
table: mozdata.telemetry.experiment_enrollment_cumulative_population_estimate
type: table_view
experiment_enrollment_daily_active_population:
tables:
- channel: release
table: mozdata.telemetry.experiment_enrollment_daily_active_population
type: table_view
experiment_enrollment_other_events_overall:
tables:
- channel: release
table: mozdata.telemetry.experiment_enrollment_other_events_overall
type: table_view
experiment_enrollment_overall:
tables:
- channel: release
table: mozdata.telemetry.experiment_enrollment_overall
type: table_view
experiment_search_aggregates_live:
tables:
- channel: release
table: moz-fx-data-shared-prod.telemetry_derived.experiment_search_aggregates_live_v1
type: table_view
experiment_unenrollment_overall:
tables:
- channel: release
table: mozdata.telemetry.experiment_unenrollment_overall
type: table_view
experimenter_experiments:
tables:
- channel: release
table: moz-fx-data-experiments.monitoring.experimenter_experiments_v1
type: table_view
logs:
tables:
- channel: release
table: moz-fx-data-experiments.monitoring.logs
type: table_view
query_cost:
tables:
- channel: release
table: moz-fx-data-experiments.monitoring.query_cost_v1
type: table_view
task_monitoring_logs:
tables:
- channel: release
table: moz-fx-data-experiments.monitoring.task_monitoring_logs
type: table_view
fakespot:
glean_app: false
owners:
pretty_name: Fakespot
spoke: looker-spoke-default
fenix:
explores:
activation:
type: glean_ping_explore
views:
base_view: activation
addresses_sync:
type: glean_ping_explore
views:
base_view: addresses_sync
baseline:
type: glean_ping_explore
views:
base_view: baseline
baseline_clients_daily:
type: glean_ping_explore
views:
base_view: baseline_clients_daily
baseline_clients_first_seen:
type: glean_ping_explore
views:
base_view: baseline_clients_first_seen
baseline_clients_last_seen:
type: glean_ping_explore
views:
base_view: baseline_clients_last_seen
bookmarks_sync:
type: glean_ping_explore
views:
base_view: bookmarks_sync
bounce_tracking_protection:
type: glean_ping_explore
views:
base_view: bounce_tracking_protection
broken_site_report:
type: glean_ping_explore
views:
base_view: broken_site_report
client_counts:
type: client_counts_explore
views:
base_view: client_counts
extended_view: baseline_clients_daily_table
client_deduplication:
type: glean_ping_explore
views:
base_view: client_deduplication
cookie_banner_report_site:
type: glean_ping_explore
views:
base_view: cookie_banner_report_site
crash:
type: glean_ping_explore
views:
base_view: crash
creditcards_sync:
type: glean_ping_explore
views:
base_view: creditcards_sync
dau_reporting:
type: glean_ping_explore
views:
base_view: dau_reporting
deletion_request:
type: glean_ping_explore
views:
base_view: deletion_request
events:
type: events_explore
views:
base_view: events
extended_view: events_unnested_table
events_stream:
type: glean_ping_explore
views:
base_view: events_stream
events_stream_table:
type: table_explore
views:
base_view: events_stream_table
events_unnested:
type: glean_ping_explore
views:
base_view: events_unnested
feature_usage_events:
type: table_explore
views:
base_view: feature_usage_events
feature_usage_metrics:
type: table_explore
views:
base_view: feature_usage_metrics
first_session:
type: glean_ping_explore
views:
base_view: first_session
fog_validation:
type: glean_ping_explore
views:
base_view: fog_validation
font_list:
type: glean_ping_explore
views:
base_view: font_list
funnel_analysis:
type: funnel_analysis_explore
views:
base_view: funnel_analysis
fx_suggest:
type: glean_ping_explore
views:
base_view: fx_suggest
growth_accounting:
type: growth_accounting_explore
views:
base_view: growth_accounting
history_sync:
type: glean_ping_explore
views:
base_view: history_sync
installation:
type: glean_ping_explore
views:
base_view: installation
logins_sync:
type: glean_ping_explore
views:
base_view: logins_sync
metric_definitions_baseline:
type: metric_definitions_explore
views:
base_view: metric_definitions_baseline
metric_definitions_baseline_v2:
type: metric_definitions_explore
views:
base_view: metric_definitions_baseline_v2
metric_definitions_events:
type: metric_definitions_explore
views:
base_view: metric_definitions_events
metric_definitions_feature_usage_metrics_v1:
type: metric_definitions_explore
views:
base_view: metric_definitions_feature_usage_metrics_v1
metric_definitions_fenix_active_users_aggregates_view:
type: metric_definitions_explore
views:
base_view: metric_definitions_fenix_active_users_aggregates_view
metric_definitions_fenix_active_users_view:
type: metric_definitions_explore
views:
base_view: metric_definitions_fenix_active_users_view
metric_definitions_fenix_engagement_view:
type: metric_definitions_explore
views:
base_view: metric_definitions_fenix_engagement_view
metric_definitions_fenix_retention_view:
type: metric_definitions_explore
views:
base_view: metric_definitions_fenix_retention_view
metric_definitions_metrics:
type: metric_definitions_explore
views:
base_view: metric_definitions_metrics
metric_definitions_mobile_search_clients_engines_sources_daily:
type: metric_definitions_explore
views:
base_view: metric_definitions_mobile_search_clients_engines_sources_daily
metric_definitions_new_profile_activation:
type: metric_definitions_explore
views:
base_view: metric_definitions_new_profile_activation
metric_definitions_special_onboarding_events:
type: metric_definitions_explore
views:
base_view: metric_definitions_special_onboarding_events
metrics:
type: glean_ping_explore
views:
base_view: metrics
migration:
type: glean_ping_explore
views:
base_view: migration
pageload:
type: glean_ping_explore
views:
base_view: pageload
spoc:
type: glean_ping_explore
views:
base_view: spoc
startup_timeline:
type: glean_ping_explore
views:
base_view: startup_timeline
sync:
type: glean_ping_explore
views:
base_view: sync
tabs_sync:
type: glean_ping_explore
views:
base_view: tabs_sync
topsites_impression:
type: glean_ping_explore
views:
base_view: topsites_impression
use_counters:
type: glean_ping_explore
views:
base_view: use_counters
user_characteristics:
type: glean_ping_explore
views:
base_view: user_characteristics
glean_app: true
owners:
pretty_name: Fenix
spoke: looker-spoke-default
views:
activation:
tables:
- channel: release
table: mozdata.fenix.activation
- channel: beta
table: mozdata.org_mozilla_firefox_beta.activation
- channel: nightly
table: mozdata.org_mozilla_fenix.activation
- channel: nightly
table: mozdata.org_mozilla_fenix_nightly.activation
- channel: nightly
table: mozdata.org_mozilla_fennec_aurora.activation
type: glean_ping_view
activation_table:
tables:
- channel: release
table: mozdata.fenix.activation
- channel: beta
table: mozdata.org_mozilla_firefox_beta.activation
- channel: nightly
table: mozdata.org_mozilla_fenix.activation
- channel: nightly
table: mozdata.org_mozilla_fenix_nightly.activation
- channel: nightly
table: mozdata.org_mozilla_fennec_aurora.activation
type: table_view
active_users_aggregates_table:
tables:
- channel: release
table: mozdata.fenix.active_users_aggregates
type: table_view
active_users_table:
tables:
- channel: release
table: mozdata.fenix.active_users
type: table_view
addresses_sync:
tables:
- channel: release
table: mozdata.fenix.addresses_sync
- channel: beta
table: mozdata.org_mozilla_firefox_beta.addresses_sync
- channel: nightly
table: mozdata.org_mozilla_fenix.addresses_sync
- channel: nightly
table: mozdata.org_mozilla_fenix_nightly.addresses_sync
- channel: nightly
table: mozdata.org_mozilla_fennec_aurora.addresses_sync
type: glean_ping_view
addresses_sync_table:
tables:
- channel: release
table: mozdata.fenix.addresses_sync
- channel: beta
table: mozdata.org_mozilla_firefox_beta.addresses_sync
- channel: nightly
table: mozdata.org_mozilla_fenix.addresses_sync
- channel: nightly
table: mozdata.org_mozilla_fenix_nightly.addresses_sync
- channel: nightly
table: mozdata.org_mozilla_fennec_aurora.addresses_sync
type: table_view
android_onboarding:
tables:
- table: moz-fx-data-shared-prod.fenix_derived.android_onboarding_v1
type: table_view
android_store_performance:
tables:
- table: moz-fx-data-marketing-prod.google_play_store.Store_Performance_country_v1
type: table_view
attributable_clients_table:
tables:
- channel: release
table: mozdata.fenix.attributable_clients
type: table_view
attributable_clients_v2_table:
tables:
- channel: release
table: mozdata.fenix.attributable_clients_v2
type: table_view
attribution_clients_table:
tables:
- channel: release
table: mozdata.fenix.attribution_clients
type: table_view
baseline:
tables:
- channel: release
table: mozdata.fenix.baseline
- channel: beta
table: mozdata.org_mozilla_firefox_beta.baseline
- channel: nightly
table: mozdata.org_mozilla_fenix.baseline
- channel: nightly
table: mozdata.org_mozilla_fenix_nightly.baseline
- channel: nightly
table: mozdata.org_mozilla_fennec_aurora.baseline
type: glean_ping_view
baseline_clients_daily:
tables:
- channel: release
table: mozdata.fenix.baseline_clients_daily
type: glean_ping_view
baseline_clients_daily_table:
tables:
- channel: release
table: mozdata.fenix.baseline_clients_daily
- channel: beta
table: mozdata.org_mozilla_firefox_beta.baseline_clients_daily
- channel: nightly
table: mozdata.org_mozilla_fenix.baseline_clients_daily
- channel: nightly
table: mozdata.org_mozilla_fenix_nightly.baseline_clients_daily
- channel: nightly
table: mozdata.org_mozilla_fennec_aurora.baseline_clients_daily
type: table_view
baseline_clients_first_seen:
tables:
- channel: release
table: mozdata.fenix.baseline_clients_first_seen
type: glean_ping_view
baseline_clients_first_seen_table:
tables:
- channel: release
table: mozdata.fenix.baseline_clients_first_seen
- channel: beta
table: mozdata.org_mozilla_firefox_beta.baseline_clients_first_seen
- channel: nightly