Skip to content
This repository was archived by the owner on Jan 21, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
2a740d5
Initial commit
Sep 21, 2022
3d5aad1
Merge branch 'master' of https://github.com/Pat-94/ga_four_block_dev.…
Sep 21, 2022
fc349b4
connected to BQ
Pat-94 Sep 21, 2022
0b78b34
replaced sessions view PDT with DBT output
Pat-94 Sep 21, 2022
2de5316
added kraken user_id to GA explore
Pat-94 Sep 29, 2022
648b89c
unhid sl key
Pat-94 Sep 29, 2022
309559f
added kraken user facts to GA explore
Pat-94 Sep 30, 2022
68c7c85
added social categories to GA model - this could be a temp fix, not s…
Pat-94 Apr 5, 2023
ebf177d
added 36 new GA parameters
Pat-94 Sep 5, 2023
7add9ef
ga datatype bugfix
Pat-94 Jan 4, 2024
dffb9bf
GA update
Pat-94 Jan 24, 2024
2736456
added ab test buckets to GA explore
Pat-94 Jan 24, 2024
9db695f
ga update
Pat-94 Jan 28, 2024
15e8988
added event name list to GA
Pat-94 Jan 29, 2024
fe3b12f
wrong data type for searched for time GA
Feb 8, 2024
fc178f8
GA type differences
Feb 8, 2024
bcb836b
added non unix first touch timestamp to GA
Pat-94 Feb 12, 2024
d82e9d9
killed the ga PDT - its already created by dbt no point in doing it t…
Pat-94 Mar 21, 2024
d312414
added an always filter to ga_sessions
Pat-94 Mar 25, 2024
6f2b143
swapped ga sessions for the degranulated table
Pat-94 Mar 27, 2024
3576ceb
set up liquid switch on ga version
Pat-94 Mar 27, 2024
28b77dd
renamed version parameter options
Pat-94 Mar 27, 2024
74864d7
added ga custom params for parkyn
Pat-94 Apr 23, 2024
47b1764
updated ga data types
Pat-94 Apr 29, 2024
c684550
additional GA fields
Pat-94 Jul 25, 2024
7d82150
ga bugfix
Pat-94 Jul 25, 2024
6c43693
added experiment 3 bucket to GA
Pat-94 Oct 7, 2024
011b898
deploy IOS parameters
Pat-94 Nov 18, 2024
344f004
added session user id to GA
Pat-94 Nov 21, 2024
b1a7de1
ga bugfix
Pat-94 Nov 21, 2024
43fbb21
casted user_id to int
Pat-94 Nov 21, 2024
f0e4898
added experiment buckets to GA
Pat-94 Nov 21, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions explores/sessions.explore.lkml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ include: "/attributes/*.lkml"
explore: sessions {
label: "GA4 Sessions"
description: "Explores Google Analytics sessions data."
always_filter: {
filters: [sessions.session_date: "7 days"]
}


join: audience_cohorts {
type: left_outer
Expand Down Expand Up @@ -37,6 +41,17 @@ explore: sessions {
relationship: many_to_one
}

join: kraken_user_facts {
relationship: many_to_one
view_label: "Kraken User Facts"
sql_on: ${kraken_user_facts.sl_key} = ${sessions.sl_key};;
}

join: experiment_buckets {
relationship: many_to_one
sql_on: ${experiment_buckets.sl_key} = ${sessions.sl_key} ;;
}

# join: future_purchase_prediction {
# view_label: "BQML"
# relationship: one_to_one
Expand Down
4 changes: 2 additions & 2 deletions manifest.lkml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@

## Connection Constants:
constant: GA4_CONNECTION {
value: "looker-demos"
value: "data_warehouse_bq"
export: override_required
}

constant: GA4_SCHEMA {
value: "adh-demo-data-review.analytics_213025502"
value: "hardy-force-319814.analytics_250111504"
export: override_optional
}

Expand Down
Loading