-
Notifications
You must be signed in to change notification settings - Fork 17
Closed
Description
We’re using the following (pseudo) code to manually send pageviews to Simple Analytics. This allows us to group them later in AWS Glue:
<script>
function saLoaded() {
let hash = '/sa/1/1/1/1?utm_source=5';
if (window.sa_pageview) window.sa_pageview(hash);
}
</script>However, the utm_source (and other UTM parameters) are not being registered. When we export data from https://dashboard.simpleanalytics.com/export and include path, path_and_query, and all UTM fields, we get:
| path | path_and_query | utm_campaign | utm_content | utm_medium | utm_source | utm_term |
|---|---|---|---|---|---|---|
| /sa/1/1/1/1 | /sa/1/1/1/1 | |||||
| /sa/1/1/1/1 | /sa/1/1/1/1 |
Expected: utm_source (and other UTM fields) should be parsed and included in the export.
Metadata
Metadata
Assignees
Labels
No labels