-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dashboard colors and "Meta" string hardcoded changes #4
Conversation
CsarSainz
commented
Dec 19, 2024
- Changed colors from campaign manager dashboard in order to make more sense from Data Analytics perspective.
- Added "Meta" hardcoded as a string so identify this source instead of a syntethic data column we used before.
@@ -15,7 +15,7 @@ sql: | |||
ad_insights.CampaignName AS campaign_name, | |||
ad_insights.AdSetId AS ad_set_id, | |||
ad_insights.AdSetName AS ad_set_name, | |||
ad_insights.meta_ads_source AS ad_source, | |||
"Meta" AS ad_source, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we need this hardcoded??
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ad_insights.meta_ads_source is a synthetic column we generated for testing purposes, not part of the original Meta data transfer.
The data transfer as far as I know doesn't have a column to identify "Instagram" or "Facebook", but we need to be able to check from which source this derived table is pulling data from regardless of that. That's because Meta derived table is part of the code to generate the multisource DT: https://github.com/looker-open-source/pacing-ads-block/blob/master/views/pacing_block/multisource_ads.view.lkml
Any more doubts feel free to ask.
Thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm