-
Notifications
You must be signed in to change notification settings - Fork 17
/
custom-namespaces.yaml
1905 lines (1905 loc) · 54.6 KB
/
custom-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
---
operational_monitoring:
glean_app: false
owners:
- ascholtz@mozilla.com
pretty_name: Operational Monitoring
views:
projects:
type: table_view
tables:
- table: moz-fx-data-shared-prod.operational_monitoring_derived.projects_v1
combined_browser_metrics:
glean_app: false
owners:
- gkaberere@mozilla.com
- lvargas@mozilla.com
- mhirose@mozilla.com
- anicholson@mozilla.com
- kik@mozilla.com
pretty_name: Combined Browser Metrics
views:
active_users_aggregates:
type: table_view
tables:
- table: moz-fx-data-shared-prod.telemetry.active_users_aggregates
active_users_aggregates_device:
type: table_view
tables:
- table: moz-fx-data-shared-prod.telemetry.active_users_aggregates_device
cohort_daily_statistics:
type: table_view
tables:
- table: moz-fx-data-shared-prod.telemetry.cohort_daily_statistics
fenix_and_firefox_use_counters:
type: table_view
tables:
- table: mozilla-public-data.telemetry_derived.fenix_and_firefox_use_counters
review_checker_desktop:
glean_app: false
owners:
- betling@mozilla.com
- akommasani@mozilla.com
pretty_name: Review Checker Desktop
views:
clients:
type: table_view
tables:
- table: mozdata.firefox_desktop.review_checker_clients
events:
type: table_view
tables:
- table: mozdata.firefox_desktop.review_checker_events
microsurvey:
type: table_view
tables:
- table: mozdata.firefox_desktop.review_checker_microsurvey
review_checker:
glean_app: false
owners:
- betling@mozilla.com
- akommasani@mozilla.com
pretty_name: Review Checker
explores:
desktop_clients:
type: table_explore
views:
base_view: desktop_clients
desktop_events:
type: table_explore
views:
base_view: desktop_events
desktop_microsurvey:
type: table_explore
views:
base_view: desktop_microsurvey
android_clients:
type: table_explore
views:
base_view: android_clients
android_events:
type: table_explore
views:
base_view: android_events
ios_clients:
type: table_explore
views:
base_view: ios_clients
ios_events:
type: table_explore
views:
base_view: ios_events
views:
desktop_clients:
type: table_view
tables:
- table: mozdata.firefox_desktop.review_checker_clients
desktop_events:
type: table_view
tables:
- table: mozdata.firefox_desktop.review_checker_events
desktop_microsurvey:
type: table_view
tables:
- table: mozdata.firefox_desktop.review_checker_microsurvey
android_clients:
type: table_view
tables:
- table: mozdata.org_mozilla_fenix.review_checker_clients
android_events:
type: table_view
tables:
- table: mozdata.org_mozilla_fenix.review_checker_events
ios_clients:
type: table_view
tables:
- table: mozdata.org_mozilla_ios_firefox.review_checker_clients
ios_events:
type: table_view
tables:
- table: mozdata.org_mozilla_ios_firefox.review_checker_events
duet:
glean_app: false
owners:
- ascholtz@mozilla.com
pretty_name: DUET
explores:
gplay_installs_by_country:
type: table_explore
views:
base_view: gplay_installs_by_country
views:
gplay_installs_by_country:
type: table_view
tables:
- table: mozdata.fenix.gplay_installs_by_country
measures:
total_installs:
type: sum
sql: "${install_count}"
total_uninstalls:
type: sum
sql: "${uninstall_count}"
total_updates:
type: sum
sql: "${update_count}"
install:
type: ping_view
tables:
- channel: release
table: mozdata.firefox_installer.install
new_profile:
type: ping_view
tables:
- channel: release
table: mozdata.telemetry.new_profile
fenix_marketing_metrics:
type: table_view
tables:
- table: moz-fx-data-shared-prod.fenix.marketing_attributable_metrics
firefox_mobile_installs:
type: table_view
tables:
- table: moz-fx-data-marketing-prod.adjust_derived.firefox_mobile_installs_v1
firefox_mobile_installs_adjust_deliverables:
type: table_view
tables:
- table: moz-fx-data-shared-prod.adjust_derived.adjust_deliverables_v1
firefox_ios_campaign_performance:
type: table_view
tables:
- table: mozdata.firefox_ios.ad_activation_performance
app_store_funnel_ios:
type: table_view
tables:
- table: mozdata.firefox_ios.app_store_funnel
activity_stream:
glean_app: false
owners:
- najiang@mozilla.com
pretty_name: Activity Stream
views:
events:
type: ping_view
tables:
- table: mozdata.activity_stream.events
sessions:
type: ping_view
tables:
- table: mozdata.activity_stream.sessions
impression_stats_flat:
type: ping_view
tables:
- table: mozdata.activity_stream.impression_stats_flat
explores:
event_counts:
type: ping_explore
views:
base_view: events
session_counts:
type: ping_explore
views:
base_view: sessions
pocket_tile_impressions:
type: ping_explore
views:
base_view: impression_stats_flat
search_private:
glean_app: false
connection: bigquery-oauth
pretty_name: Search Private
owners:
- xluo@mozilla.com
- skahmann@mozilla.com
- ctroy@mozilla.com
spoke: looker-spoke-private
views:
search_term_sanitization_job_metadata_daily:
type: table_view
tables:
- table: moz-fx-data-shared-prod.search_terms_derived.sanitization_job_metadata_v2
sanitization_job_languages:
type: table_view
tables:
- table: moz-fx-data-shared-prod.search_terms.sanitization_job_languages
search_term_data_validation_reports:
type: table_view
tables:
- table: moz-fx-data-shared-prod.search_terms_derived.search_term_data_validation_reports_v1
search:
glean_app: false
owners:
- xluo@mozilla.com
- skahmann@mozilla.com
- ctroy@mozilla.com
pretty_name: Search
views:
search_clients_engines_sources_daily:
type: table_view
tables:
- table: mozdata.search.search_clients_engines_sources_daily
mobile_search_clients_engines_sources_daily:
type: table_view
tables:
- table: mozdata.search.mobile_search_clients_engines_sources_daily
desktop_mobile_search_clients_monthly:
type: table_view
tables:
- table: mozdata.search.desktop_mobile_search_clients_monthly
desktop_search_alert_records:
type: ping_view
tables:
- table: mozdata.analysis.desktop_search_alert_records
desktop_search_alert_latest_daily:
type: table_view
tables:
- table: mozdata.analysis.desktop_search_alert_latest_daily
explores:
desktop_search_counts:
type: ping_explore
views:
base_view: search_clients_engines_sources_daily
mobile_search_counts:
type: ping_explore
views:
base_view: mobile_search_clients_engines_sources_daily
desktop_search_alert_records:
type: ping_explore
views:
base_view: desktop_search_alert_records
contextual_services_private:
glean_app: false
connection: bigquery-oauth
pretty_name: Contextual Services
owners:
- rburwei@mozilla.com
- mbowerman@mozilla.com
spoke: looker-spoke-private
views:
request_payload_tiles:
type: table_view
tables:
- table: mozdata.contextual_services.request_payload_tiles
request_payload_suggest:
type: table_view
tables:
- table: mozdata.contextual_services.request_payload_suggest
final_adM_forecasts:
type: table_view
tables:
- table: moz-fx-data-shared-prod.revenue_derived.final_adm_revenue_forecast
suggest_revenue_levers_daily:
type: table_view
tables:
- table: mozdata.contextual_services.suggest_revenue_levers_daily
event_aggregates_spons_tiles:
type: ping_view
tables:
- table: mozdata.contextual_services.event_aggregates_spons_tiles
event_aggregates_suggest:
type: ping_view
tables:
- table: mozdata.contextual_services.event_aggregates_suggest
event_aggregates:
type: ping_view
tables:
- table: mozdata.contextual_services.event_aggregates
quicksuggest_click:
type: ping_view
tables:
- table: mozdata.contextual_services.quicksuggest_click
quicksuggest_impression:
type: ping_view
tables:
- table: mozdata.contextual_services.quicksuggest_impression
search_terms_daily:
type: ping_view
tables:
- table: mozdata.search_terms.search_terms_daily
topsites_click:
type: ping_view
tables:
- table: mozdata.contextual_services.topsites_click
topsites_impression:
type: ping_view
tables:
- table: mozdata.contextual_services.topsites_impression
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
explores:
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
event_aggregates:
type: ping_explore
views:
base_view: event_aggregates
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
contextual_services:
glean_app: false
pretty_name: Contextual Services
owners:
- rburwei@mozilla.com
- mbowerman@mozilla.com
views:
sponsored_tiles_ad_request_fill:
type: table_view
tables:
- table: mozdata.telemetry.sponsored_tiles_ad_request_fill
mozilla_vpn_private:
glean_app: false
connection: bigquery-oauth
pretty_name: Mozilla VPN
owners:
- dthorn@mozilla.com
spoke: looker-spoke-private
mozilla_vpn:
glean_app: true
owners:
- dthorn@mozilla.com
pretty_name: Mozilla VPN
views:
devices:
type: table_view
tables:
- channel: release
table: mozdata.mozilla_vpn.devices
funnel_fxa_login_to_protected:
type: table_view
tables:
- channel: release
table: mozdata.mozilla_vpn.funnel_fxa_login_to_protected
funnel_ga_to_subscriptions:
type: table_view
tables:
- channel: release
table: mozdata.mozilla_vpn.funnel_ga_to_subscriptions
retention_by_subscription:
type: table_view
tables:
- channel: release
table: mozdata.mozilla_vpn.retention_by_subscription
site_metrics_summary:
type: table_view
tables:
- channel: release
table: moz-fx-data-shared-prod.mozilla_vpn_derived.site_metrics_summary_v2
subscriptions:
type: table_view
tables:
- channel: release
table: mozdata.mozilla_vpn.all_subscriptions
vat_rates:
type: table_view
tables:
- channel: release
table: mozdata.mozilla_vpn.vat_rates
monitor_frontend:
glean_app: true
owners:
- ksiegler@mozilla.com
pretty_name: Monitor Frontend
views:
dashboard_user_journey_funnels:
type: table_view
tables:
- table: moz-fx-data-shared-prod.monitor_frontend_derived.monitor_dashboard_user_journey_funnels_v1
explores:
dashboard_user_journey_funnels:
type: table_explore
views:
base_view: dashboard_user_journey_funnels
firefox_accounts:
glean_app: false
owners:
- loines@mozilla.com
pretty_name: Firefox Accounts
views:
all_events:
type: events_view
tables:
- events_table_view: all_events_table
base_table: mozdata.firefox_accounts.fxa_all_events
events:
type: events_view
tables:
- events_table_view: fxa_events_table
base_table: mozdata.firefox_accounts.fxa_content_auth_oauth_events
auth_events:
type: events_view
tables:
- events_table_view: fxa_auth_events_table
base_table: mozdata.firefox_accounts.fxa_content_auth_events
content_auth_stdout_events:
type: events_view
tables:
- events_table_view: fxa_content_auth_stdout_events_table
base_table: mozdata.firefox_accounts.fxa_content_auth_stdout_events
all_events_table:
type: table_view
tables:
- table: mozdata.firefox_accounts.fxa_all_events
time_partitioning_field: "timestamp"
fxa_events_table:
type: table_view
tables:
- channel: release
table: mozdata.firefox_accounts.fxa_content_auth_oauth_events
time_partitioning_field: "timestamp"
fxa_auth_events_table:
type: table_view
tables:
- channel: release
table: mozdata.firefox_accounts.fxa_content_auth_events
time_partitioning_field: "timestamp"
fxa_content_auth_stdout_events_table:
type: table_view
tables:
- channel: release
table: mozdata.firefox_accounts.fxa_content_auth_stdout_events
time_partitioning_field: "timestamp"
funnel_analysis:
type: funnel_analysis_view
tables:
- funnel_analysis: events_daily_table
event_types: mozdata.firefox_accounts.event_types
step_1: event_types
step_2: event_types
step_3: event_types
step_4: event_types
events_daily_table:
type: table_view
tables:
- channel: release
table: mozdata.firefox_accounts.events_daily
growth_accounting:
type: growth_accounting_view
identifier_field: user_id_sha256
tables:
- table: mozdata.accounts_backend.users_services_last_seen
fxa_first_seen_table:
type: table_view
tables:
- channel: release
table: mozdata.firefox_accounts.fxa_users_first_seen
fxa_users_services_first_seen_table:
type: table_view
tables:
- table: mozdata.firefox_accounts.fxa_users_services_first_seen
fxa_users_services_daily_table:
type: table_view
tables:
- table: mozdata.firefox_accounts.fxa_users_services_daily
fxa_log_device_command_events:
type: table_view
tables:
- channel: release
table: mozdata.firefox_accounts.fxa_log_device_command_events
login_funnels:
type: table_view
tables:
- table: moz-fx-data-shared-prod.firefox_accounts_derived.login_funnels_v1
login_funnels_by_service:
type: table_view
tables:
- table: moz-fx-data-shared-prod.accounts_frontend.login_funnels_by_service
registration_funnels_by_service:
type: table_view
tables:
- table: moz-fx-data-shared-prod.accounts_frontend.registration_funnels_by_service
registration_funnels:
type: table_view
tables:
- table: moz-fx-data-shared-prod.firefox_accounts_derived.registration_funnels_v1
registration_funnels_legacy_events:
type: table_view
tables:
- table: moz-fx-data-shared-prod.firefox_accounts_derived.registration_funnels_legacy_events_v1
accounts_aggregates:
type: table_view
tables:
- table: moz-fx-data-shared-prod.accounts_db.accounts_aggregates
accounts_oauth_clients:
type: table_view
tables:
- table: moz-fx-data-shared-prod.accounts_db.fxa_oauth_clients
monitor_mozilla_accounts_funnels:
type: table_view
tables:
- table: moz-fx-data-shared-prod.accounts_frontend_derived.monitor_mozilla_accounts_funnels_v1
password_reset_funnels:
type: table_view
tables:
- table: moz-fx-data-shared-prod.accounts_frontend_derived.pwd_reset_funnels_v1
password_reset_funnels_by_service:
type: table_view
tables:
- table: moz-fx-data-shared-prod.accounts_frontend_derived.pwd_reset_funnels_by_service_v1
email_first_funnels:
type: table_view
tables:
- table: moz-fx-data-shared-prod.accounts_frontend_derived.email_first_reg_login_funnels_v1
email_first_funnels_by_service:
type: table_view
tables:
- table: moz-fx-data-shared-prod.accounts_frontend.email_first_reg_login_funnels_by_service
registration_engagement_funnels_by_service:
type: table_view
tables:
- table: moz-fx-data-shared-prod.accounts_frontend_derived.reg_engagement_funnel_v1
login_engagement_funnels_by_service:
type: table_view
tables:
- table: moz-fx-data-shared-prod.accounts_frontend_derived.login_engagement_funnel_v1
health_cost:
type: table_view
tables:
- table: mozdata.analysis.wclouser_fxa_health_cost
measures:
count:
type: count
health_counts:
type: table_view
tables:
- table: mozdata.analysis.wclouser_fxa_health_counts
health_db_counts:
type: table_view
tables:
- table: mozdata.analysis.wclouser_fxa_health_db_counts
health_issues:
type: table_view
tables:
- table: mozdata.analysis.wclouser_fxa_health_issues
measures:
count:
type: count
health_pagerduty:
type: table_view
tables:
- table: mozdata.analysis.wclouser_fxa_health_pagerduty
measures:
count:
type: count
health_prs:
type: table_view
tables:
- table: mozdata.analysis.wclouser_fxa_health_prs
measures:
count:
type: count
health_tags:
type: table_view
tables:
- table: mozdata.analysis.wclouser_fxa_health_tags
measures:
count:
type: count
health_velocity:
type: table_view
tables:
- table: mozdata.analysis.wclouser_fxa_health_velocity
measures:
count:
type: count
account_settings_page_engagement:
type: table_view
tables:
- table: moz-fx-data-shared-prod.accounts_frontend_derived.accounts_pref_engagement_v1
account_settings_delete_account_funnel:
type: table_view
tables:
- table: moz-fx-data-shared-prod.accounts_frontend_derived.account_pref_delete_funnel_v1
explores:
all_event_counts:
type: events_explore
views:
base_view: all_events
extended_view: all_events_table
event_counts:
type: events_explore
views:
base_view: events
extended_view: fxa_events_table
auth_event_counts:
type: events_explore
views:
base_view: auth_events
extended_view: fxa_auth_events_table
content_auth_stdout_event_counts:
type: events_explore
views:
base_view: content_auth_stdout_events
extended_view: fxa_content_auth_stdout_events_table
funnel_analysis:
type: funnel_analysis_explore
views:
base_view: funnel_analysis
growth_accounting:
type: growth_accounting_explore
views:
base_view: growth_accounting
accounts_aggregates:
type: table_explore
views:
base_view: accounts_aggregates
accounts_oauth_clients:
type: table_explore
views:
base_view: accounts_oauth_clients
monitor_mozilla_accounts_funnels:
type: table_explore
views:
base_view: monitor_mozilla_accounts_funnels
registration_funnels:
type: table_explore
views:
base_view: registration_funnels
registration_funnels_legacy_events:
type: table_explore
views:
base_view: registration_funnels_legacy_events
password_reset_funnels:
type: table_explore
views:
base_view: password_reset_funnels
password_reset_funnels_by_service:
type: table_explore
views:
base_view: password_reset_funnels_by_service
email_first_funnels:
type: table_explore
views:
base_view: email_first_funnels
email_first_funnels_by_service:
type: table_explore
views:
base_view: email_first_funnels_by_service
login_funnels_by_service:
type: table_explore
views:
base_view: login_funnels_by_service
registration_funnels_by_service:
type: table_explore
views:
base_view: registration_funnels_by_service
registration_engagement_funnels_by_service:
type: table_explore
views:
base_view: registration_engagement_funnels_by_service
login_engagement_funnels_by_service:
type: table_explore
views:
base_view: login_engagement_funnels_by_service
health_cost:
type: table_explore
views:
base_view: health_cost
health_counts:
type: table_explore
views:
base_view: health_counts
health_db_counts:
type: table_explore
views:
base_view: health_db_counts
health_issues:
type: table_explore
views:
base_view: health_issues
health_pagerduty:
type: table_explore
views:
base_view: health_pagerduty
health_prs:
type: table_explore
views:
base_view: health_prs
health_tags:
type: table_explore
views:
base_view: health_tags
health_velocity:
type: table_explore
views:
base_view: health_velocity
account_settings_page_engagement:
type: table_explore
views:
base_view: account_settings_page_engagement
account_settings_delete_account_funnel:
type: table_explore
views:
base_view: account_settings_delete_account_funnel
revenue:
glean_app: false
connection: bigquery-oauth
pretty_name: Revenue
owners:
- akomarzewski@mozilla.com
- skahmann@mozilla.com
spoke: looker-spoke-private
views:
firefox_ltv:
type: table_view
tables:
- table: mozdata.revenue.firefox_ltv
fenix_ltv:
type: table_view
tables:
- table: mozdata.ltv.fenix_client_ltv
firefox_ios_ltv:
type: table_view
tables:
- table: mozdata.ltv.firefox_ios_client_ltv
firefox_desktop_ltv:
type: table_view
tables:
- table: mozdata.ltv.firefox_desktop_client_ltv
revenue_google_top10_row_data:
type: table_view
tables:
- table: mozdata.revenue.revenue_google_top10_row_data
stripe_itemized_payout_reconciliation:
type: table_view
tables:
- table: mozdata.stripe.itemized_payout_reconciliation
stripe_itemized_tax_transactions:
type: table_view
tables:
- table: mozdata.stripe.itemized_tax_transactions
ad_cost_breakdowns:
type: table_view
tables:
- table: moz-fx-data-shared-prod.fenix_derived.google_ads_campaign_cost_breakdowns_v1
search_revenue_levers_monthly:
type: table_view
tables:
- table: mozdata.revenue.search_revenue_levers_monthly
revenue_private:
glean_app: false
connection: bigquery-oauth
pretty_name: Revenue Private
owners:
- akomarzewski@mozilla.com
- skahmann@mozilla.com
- xluo@mozilla.com
spoke: looker-spoke-private
views:
search_revenue_levers_daily:
type: table_view
tables:
- table: mozdata.search.search_revenue_levers_daily
revenue_forecast_review_2022:
type: table_view
tables:
- table: mozdata.revenue_cat3_analysis.revenue_forecast_review_long
revenue_budget_2022:
type: table_view
tables:
- table: mozdata.revenue_cat3_analysis.budget_complete_2022
ads:
glean_app: false
connection: bigquery-oauth
pretty_name: Ads
owners:
- cmorales@mozilla.com
- sbetancourt@mozilla.com
spoke: looker-spoke-private
views:
consolidated_ad_metrics_daily_pt:
type: table_view
tables:
- table: mozdata.ads.consolidated_ad_metrics_daily_pt
consolidated_ad_metrics_hourly:
type: table_view
tables:
- table: mozdata.ads.consolidated_ad_metrics_hourly
tiles_addressable_inventory_hourly:
type: table_view
tables:
- table: mozdata.ads.tiles_addressable_inventory_hourly
amp_search_with:
type: table_view
tables:
- table: mozdata.ads.amp_search_with
firefox_ios:
pretty_name: Firefox iOS
owners:
- darcese@mozilla.com
- kik@mozilla.com
- rbaffourawuah@mozilla.com
- vsabino@mozilla.com
views:
feature_usage_metrics:
type: table_view
tables:
- table: moz-fx-data-shared-prod.firefox_ios.feature_usage_metrics
feature_usage_events:
type: table_view
tables:
- table: moz-fx-data-shared-prod.firefox_ios.feature_usage_events
clients_activation:
type: table_view
tables:
- table: mozdata.firefox_ios.clients_activation
firefox_ios_clients:
type: table_view
tables:
- table: mozdata.firefox_ios.firefox_ios_clients
app_store_choice_screen_engagement:
type: table_view
tables:
- table: moz-fx-data-shared-prod.firefox_ios.app_store_choice_screen_engagement
explores:
feature_usage_metrics:
type: table_explore
views:
base_view: feature_usage_metrics
feature_usage_events:
type: table_explore
views:
base_view: feature_usage_events
clients_activation:
type: table_explore
views:
base_view: clients_activation
fenix:
pretty_name: Firefox Android
owners:
- vzare@mozilla.com
- rbaffourawuah@mozilla.com
- vsabino@mozilla.com
- kik@mozilla.com
views:
android_store_performance:
type: table_view
tables:
- table: moz-fx-data-marketing-prod.google_play_store.Store_Performance_country_v1
android_onboarding:
type: table_view
tables:
- table: moz-fx-data-shared-prod.fenix_derived.android_onboarding_v1
feature_usage_metrics:
type: table_view
tables:
- table: moz-fx-data-shared-prod.fenix.feature_usage_metrics
feature_usage_events:
type: table_view
tables:
- table: moz-fx-data-shared-prod.fenix.feature_usage_events
firefox_android_clients:
type: table_view
tables:
- table: mozdata.fenix.firefox_android_clients
explores:
feature_usage_metrics:
type: table_explore
views:
base_view: feature_usage_metrics
feature_usage_events:
type: table_explore
views:
base_view: feature_usage_events
newtab:
glean_app: false
connection: bigquery-oauth
pretty_name: New Tab
owners:
- cmorales@mozilla.com
- mbowerman@mozilla.com
spoke: looker-spoke-private
experimentation:
glean_app: false
owners:
- ascholtz@mozilla.com
pretty_name: Experimentation
views:
logs:
type: table_view
tables:
- channel: release
table: moz-fx-data-experiments.monitoring.logs
query_cost:
type: table_view
tables:
- channel: release
table: moz-fx-data-experiments.monitoring.query_cost_v1
task_monitoring_logs:
type: table_view
tables:
- channel: release
table: moz-fx-data-experiments.monitoring.task_monitoring_logs
experiment_enrollment_daily_active_population:
type: table_view
tables:
- channel: release
table: mozdata.telemetry.experiment_enrollment_daily_active_population
experiment_enrollment_cumulative_population_estimate:
type: table_view
tables:
- channel: release
table: mozdata.telemetry.experiment_enrollment_cumulative_population_estimate
experiment_enrollment_overall:
type: table_view
tables:
- channel: release
table: mozdata.telemetry.experiment_enrollment_overall
experiment_unenrollment_overall:
type: table_view
tables:
- channel: release
table: mozdata.telemetry.experiment_unenrollment_overall
experiment_enrollment_other_events_overall: