-
Notifications
You must be signed in to change notification settings - Fork 2
/
facebook.view.lkml
81 lines (62 loc) · 1.89 KB
/
facebook.view.lkml
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
include: "//@{CONFIG_PROJECT_NAME}/*.view"
# Facebook Ads configuration for Facebook Ads Block by Looker
include: "//app-marketing-facebook-ads-adapter/*.view"
include: "//app-marketing-facebook-ads/*.view"
include: "//app-marketing-common/*.view"
# Customize measure definitions in this view. Changes will be reflected across all projects.
view: ad_metrics_base {
extends: [ad_metrics_base_config]
}
view: fb_adcreative {
extends: [fb_adcreative_config]
}
view: fb_ad {
extends: [fb_ad_config]
}
view: fb_adset {
extends: [fb_adset_config]
}
view: fb_campaign {
extends: [fb_campaign_config]
}
view: fb_account {
extends: [fb_account_config]
}
view: fb_ad_metrics_base {
extends: [fb_ad_metrics_base_config]
}
view: fb_ad_impressions {
extends: [fb_ad_impressions_config]
}
view: fb_ad_impressions_age_and_gender {
extends: [fb_ad_impressions_age_and_gender_config]
}
view: fb_ad_impressions_geo {
extends: [fb_ad_impressions_geo_config]
}
view: fb_ad_impressions_platform_and_device {
extends: [fb_ad_impressions_platform_and_device_config]
}
view: fb_period_comparison {
extends: [fb_period_comparison_config]
}
view: actions_fb_custom {
sql_table_name: @{FACEBOOK_SCHEMA}.ads_insights_actions;;
extends: [actions_fb_custom_config]
}
view: actions_age_and_gender_fb_custom {
extends: [actions_age_and_gender_fb_custom_config]
sql_table_name: @{FACEBOOK_SCHEMA}.ads_insights_age_and_gender_actions ;;
}
view: actions_hour_fb_custom {
extends: [actions_hour_fb_custom_config]
sql_table_name: @{FACEBOOK_SCHEMA}.ads_insights_hour_actions ;;
}
view: actions_platform_and_device_fb_custom {
extends: [actions_platform_and_device_fb_custom_config]
sql_table_name: @{FACEBOOK_SCHEMA}.ads_insights_platform_and_device_actions ;;
}
view: actions_region_fb_custom {
extends: [actions_region_fb_custom_config]
sql_table_name: @{FACEBOOK_SCHEMA}.ads_insights_region_actions ;;
}