forked from mozilla/lookml-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom-namespaces.yaml
1306 lines (1306 loc) · 37.2 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:
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:
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
active_users_aggregates_attribution:
type: table_view
tables:
- table: moz-fx-data-shared-prod.telemetry.active_users_aggregates_attribution
cohort_daily_statistics:
type: table_view
tables:
- table: moz-fx-data-shared-prod.telemetry.cohort_daily_statistics
duet:
glean_app: false
owners:
pretty_name: DUET
views:
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
firefox_android_clients:
type: table_view
tables:
- table: mozdata.fenix.firefox_android_clients
activity_stream:
glean_app: false
owners:
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:
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:
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:
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:
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:
spoke: looker-spoke-private
mozilla_vpn:
glean_app: true
owners:
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: mozdata.mozilla_vpn.site_metrics_summary
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
firefox_accounts:
glean_app: false
owners:
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
tables:
- table: mozdata.firefox_accounts.fxa_users_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
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
revenue:
glean_app: false
connection: bigquery-oauth
pretty_name: Revenue
owners:
spoke: looker-spoke-private
views:
firefox_ltv:
type: table_view
tables:
- table: mozdata.revenue.firefox_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
revenue_private:
glean_app: false
connection: bigquery-oauth
pretty_name: Revenue Private
owners:
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:
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
firefox_ios:
owners:
fenix:
owners:
focus_ios:
owners:
focus_android:
owners:
newtab:
glean_app: false
connection: bigquery-oauth
pretty_name: New Tab
owners:
spoke: looker-spoke-private
awesome_bar:
glean_app: false
owners:
pretty_name: Awesome Bar
views:
urlbar_clients_daily:
type: ping_view
tables:
- table: mozdata.telemetry.urlbar_clients_daily
explores:
urlbar_clients_daily:
type: ping_explore
views:
base_view: urlbar_clients_daily
experimentation:
glean_app: false
owners:
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
task_profiling_logs:
type: table_view
tables:
- channel: release
table: moz-fx-data-experiments.monitoring.task_profiling_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:
type: table_view
tables:
- channel: release
table: mozdata.telemetry.experiment_enrollment_other_events_overall
experiment_cumulative_search_with_ads_count:
type: table_view
tables:
- channel: release
table: mozdata.telemetry.experiment_cumulative_search_with_ads_count
experiment_cumulative_search_count:
type: table_view
tables:
- channel: release
table: mozdata.telemetry.experiment_cumulative_search_count
experiment_cumulative_ad_clicks:
type: table_view
tables:
- channel: release
table: mozdata.telemetry.experiment_cumulative_ad_clicks
experimenter_experiments:
type: table_view
tables:
- channel: release
table: moz-fx-data-experiments.monitoring.experimenter_experiments_v1
experiment_search_aggregates_live:
type: table_view
tables:
- channel: release
table: moz-fx-data-shared-prod.telemetry_derived.experiment_search_aggregates_live_v1
mr_2022_weekly_statistics_desktop_existing_users:
type: table_view
tables:
- table: moz-fx-data-experiments.mozanalysis.statistics_106_major_release_firefox_existing_user_experience_weekly
mr_2022_weekly_statistic_desktop_new_users:
type: table_view
tables:
- table: moz-fx-data-experiments.mozanalysis.statistics_106_major_release_firefox_new_user_weekly
firefox_desktop:
glean_app: true
views:
urlbar_events_table:
type: table_view
tables:
- table: mozdata.firefox_desktop.urlbar_events
urlbar_events:
type: events_view
tables:
- events_table_view: urlbar_events_table
base_table: mozdata.firefox_desktop.urlbar_events
feature_usage_table:
type: table_view
tables:
- table: mozdata.telemetry.feature_usage
clients_last_seen_table:
type: table_view
tables:
- table: mozdata.telemetry.clients_last_seen
clients_daily_table:
type: table_view
tables:
- table: mozdata.telemetry.clients_daily
clients_daily_joined_table:
type: table_view
tables:
- table: moz-fx-data-shared-prod.telemetry_derived.clients_daily_joined_v1
client_counts:
type: client_counts_view
tables:
- table: mozdata.telemetry.clients_daily
sponsored_tiles_clients_daily_table:
type: table_view
tables:
- table: mozdata.telemetry.sponsored_tiles_clients_daily
sponsored_tiles_clients_daily:
type: table_view
tables:
- table: mozdata.telemetry.sponsored_tiles_clients_daily
suggest_clients_daily_table:
type: table_view
tables:
- table: mozdata.telemetry.suggest_clients_daily
suggest_clients_daily:
type: table_view
tables:
- table: mozdata.telemetry.suggest_clients_daily
funnel_analysis:
type: funnel_analysis_view
tables:
- funnel_analysis: events_daily_table
event_types: mozdata.telemetry.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.telemetry.events_daily
growth_accounting:
type: growth_accounting_view
tables:
- table: mozdata.telemetry.clients_last_seen
events:
type: events_view
tables:
- events_table_view: desktop_events_table
base_table: mozdata.telemetry.events
glean_events:
type: events_view
tables:
- events_table_view: events_unnested_table
base_table: mozdata.firefox_desktop.events_unnested
desktop_events_table:
type: table_view
tables:
- channel: release
table: mozdata.telemetry.events
newtab_interactions_table:
type: table_view
tables:
- table: mozdata.telemetry.newtab_interactions
newtab_visits_table:
type: table_view
tables:
- table: mozdata.telemetry.newtab_visits
default_browser:
type: ping_view
tables:
- table: mozdata.default_browser_agent.default_browser
explores:
client_counts:
type: client_counts_explore
views:
base_view: client_counts
extended_view: clients_daily_table
funnel_analysis:
type: funnel_analysis_explore
views:
base_view: funnel_analysis
growth_accounting:
type: growth_accounting_explore
views:
base_view: growth_accounting
events:
type: events_explore
views:
base_view: events
extended_view: desktop_events_table
glean_event_counts:
type: events_explore
views:
base_view: glean_events
extended_view: events_unnested_table
default_browser:
type: ping_explore
views:
base_view: default_browser
pocket:
glean_app: false
owners:
pretty_name: Pocket
views:
twice_weekly_active_user_counts_history_v1:
type: table_view
tables:
- table: moz-fx-data-shared-prod.pocket_derived.twice_weekly_active_user_counts_history_v1
sync:
glean_app: false
owners:
pretty_name: Sync
views:
sync:
type: ping_view
tables:
- table: mozdata.telemetry.sync
explores:
sync:
type: ping_explore
views:
base_view: sync
monitoring:
glean_app: false
owners:
pretty_name: Monitoring (Data Pipeline)
views:
average_ping_sizes:
type: ping_view
tables:
- table: mozdata.monitoring.average_ping_sizes
bigquery_tables_inventory:
tables:
- table: moz-fx-data-shared-prod.monitoring.bigquery_tables_inventory
type: table_view
bigquery_table_storage:
tables:
- table: moz-fx-data-shared-prod.monitoring.bigquery_table_storage
type: table_view
bigquery_table_storage_timeline_daily:
tables:
- table: moz-fx-data-shared-prod.monitoring.bigquery_table_storage_timeline_daily
type: table_view
bigquery_usage:
tables:
- table: moz-fx-data-shared-prod.monitoring.bigquery_usage
type: table_view
bigquery_usage_costs:
tables:
- table: moz-fx-data-shared-prod.monitoring.bigquery_usage_costs
type: table_view
column_size:
type: ping_view
tables:
- table: mozdata.monitoring.column_size
payload_bytes_decoded_all:
type: ping_view
tables:
- table: mozdata.monitoring.payload_bytes_decoded_all
payload_bytes_error_all:
type: ping_view
tables:
- table: mozdata.monitoring.payload_bytes_error_all
schema_error_counts:
type: ping_view
tables:
- table: mozdata.monitoring.schema_error_counts
stable_table_sizes:
type: ping_view
tables:
- table: mozdata.monitoring.stable_table_sizes
stable_and_derived_table_sizes:
type: ping_view
tables:
- table: mozdata.monitoring.stable_and_derived_table_sizes
stable_table_column_counts:
type: ping_view
tables:
- table: mozdata.monitoring.stable_table_column_counts
structured_distinct_docids:
type: ping_view
tables:
- table: mozdata.monitoring.structured_distinct_docids
structured_missing_columns:
type: ping_view
tables:
- table: mozdata.monitoring.structured_missing_columns
telemetry_distinct_docids:
type: ping_view
tables:
- table: mozdata.monitoring.telemetry_distinct_docids
telemetry_missing_columns:
type: ping_view
tables:
- table: mozdata.monitoring.telemetry_missing_columns
distinct_docids_notes:
type: table_view
tables:
- table: mozdata.static.monitoring_distinct_docids_notes_v1
missing_columns_notes:
type: table_view
tables:
- table: mozdata.static.monitoring_missing_columns_notes_v1
missing_document_namespaces_notes:
type: table_view
tables:
- table: mozdata.static.monitoring_missing_document_namespaces_notes_v1
schema_errors_notes:
type: table_view
tables:
- table: mozdata.static.monitoring_schema_errors_notes_v1
# views for accessing Airflow metadata
airflow_dag:
type: table_view
tables:
- table: mozdata.monitoring.airflow_dag
airflow_dag_note:
type: table_view
tables:
- table: mozdata.monitoring.airflow_dag_note
airflow_dag_owner_attributes:
type: table_view
tables:
- table: mozdata.monitoring.airflow_dag_owner_attributes
airflow_dag_run:
type: table_view
tables:
- table: mozdata.monitoring.airflow_dag_run
airflow_dag_tag:
type: table_view
tables:
- table: mozdata.monitoring.airflow_dag_tag
airflow_dag_warning:
type: table_view
tables:
- table: mozdata.monitoring.airflow_dag_warning
airflow_import_error:
type: table_view
tables:
- table: mozdata.monitoring.airflow_import_error
airflow_job:
type: table_view
tables:
- table: mozdata.monitoring.airflow_job
airflow_slot_pool:
type: table_view
tables:
- table: mozdata.monitoring.airflow_slot_pool
airflow_task_fail:
type: table_view
tables:
- table: mozdata.monitoring.airflow_task_fail
airflow_task_instance:
type: table_view
tables:
- table: mozdata.monitoring.airflow_task_instance
airflow_task_instance_note:
type: table_view
tables:
- table: mozdata.monitoring.airflow_task_instance_note
airflow_task_reschedule:
type: table_view
tables:
- table: mozdata.monitoring.airflow_task_reschedule
airflow_trigger:
type: table_view
tables:
- table: mozdata.monitoring.airflow_trigger
airflow_user:
type: table_view
tables:
- table: mozdata.monitoring.airflow_user
explores:
average_ping_sizes:
type: ping_explore
views:
base_view: average_ping_sizes
column_size:
type: ping_explore
views:
base_view: column_size
payload_bytes_decoded_all:
type: ping_explore
views:
base_view: payload_bytes_decoded_all
payload_bytes_error_all:
type: ping_explore
views:
base_view: payload_bytes_error_all
schema_error_counts:
type: ping_explore
views:
base_view: schema_error_counts
stable_table_sizes:
type: ping_explore
views:
base_view: stable_table_sizes
stable_and_dervied_table_sizes:
type: ping_explore
views:
base_view: stable_and_derived_table_sizes
stable_table_column_counts:
type: ping_explore
views:
base_view: stable_table_column_counts
structured_distinct_docids:
type: ping_explore
views:
base_view: structured_distinct_docids
structured_missing_columns:
type: ping_explore
views:
base_view: structured_missing_columns
telemetry_distinct_docids:
type: ping_explore
views: