-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Have Snowplow Mini run the basic enrichments as standard (closes #64)
- Loading branch information
1 parent
3ba7406
commit 6dcec45
Showing
7 changed files
with
85 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"schema": "iglu:com.snowplowanalytics.snowplow/campaign_attribution/jsonschema/1-0-1", | ||
|
||
"data": { | ||
|
||
"name": "campaign_attribution", | ||
"vendor": "com.snowplowanalytics.snowplow", | ||
"enabled": true, | ||
"parameters": { | ||
"mapping": "static", | ||
"fields": { | ||
"mktMedium": ["utm_medium"], | ||
"mktSource": ["utm_source"], | ||
"mktTerm": ["utm_term"], | ||
"mktContent": ["utm_content"], | ||
"mktCampaign": ["utm_campaign"] | ||
} | ||
} | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
resources/configs/enrichments/event_fingerprint_config.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"schema": "iglu:com.snowplowanalytics.snowplow/event_fingerprint_config/jsonschema/1-0-0", | ||
|
||
"data": { | ||
|
||
"name": "event_fingerprint_config", | ||
"vendor": "com.snowplowanalytics.snowplow", | ||
"enabled": true, | ||
"parameters": { | ||
"excludeParameters": ["eid", "stm"], | ||
"hashAlgorithm": "MD5" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"schema": "iglu:com.snowplowanalytics.snowplow/ip_lookups/jsonschema/1-0-0", | ||
|
||
"data": { | ||
|
||
"name": "ip_lookups", | ||
"vendor": "com.snowplowanalytics.snowplow", | ||
"enabled": true, | ||
"parameters": { | ||
"geo": { | ||
"database": "GeoLiteCity.dat", | ||
"uri": "http://snowplow-hosted-assets.s3.amazonaws.com/third-party/maxmind" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"schema": "iglu:com.snowplowanalytics.snowplow/referer_parser/jsonschema/1-0-0", | ||
|
||
"data": { | ||
|
||
"name": "referer_parser", | ||
"vendor": "com.snowplowanalytics.snowplow", | ||
"enabled": true, | ||
"parameters": { | ||
"internalDomains": [ | ||
"subdomain1.mysite.com", | ||
"subdomain2.mysite.com" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"schema": "iglu:com.snowplowanalytics.snowplow/ua_parser_config/jsonschema/1-0-0", | ||
"data": { | ||
"vendor": "com.snowplowanalytics.snowplow", | ||
"name": "ua_parser_config", | ||
"enabled": true, | ||
"parameters": {} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"schema": "iglu:com.snowplowanalytics.snowplow/user_agent_utils_config/jsonschema/1-0-0", | ||
"data": { | ||
"vendor": "com.snowplowanalytics.snowplow", | ||
"name": "user_agent_utils_config", | ||
"enabled": true, | ||
"parameters": {} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters