Hi @PawelAntoniak
I'm slightly confused with "<head> above Tealium snippet?".
Following the document: https://docs.tealium.com/platforms/google-tag-manager/install/, it should all be done in GTM.
If the expectations is to track a "page_load" event you might want to consider adding a new event to the dataLayer array after its available. Following the GTM documentation:
https://developers.google.com/tag-platform/tag-manager/web
https://developers.google.com/tag-platform/tag-manager/web/datalayer
here's an example:
<head>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!--Google Tag Manager-->
<script>
var dataLayer = dataLayer || [];
(function (w, d, s, l, i) {w[l] = w[l] || []; w[l].push({'gtm.start':
new Date().getTime(), event: 'gtm.js'});var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src='https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-******');
dataLayer.push({
event : "page_load",
page_name : "main",
page_category : "generic",
authenticated : false
});
Thats correct, if the client side Collect Tag installation in GTM was successful, it should now be possible to see the event with its payload arriving in Tealium's CDH.
Live Events:
https://community.tealiumiq.com/t5/Customer-Data-Hub/Introduction-to-EventStream/ta-p/20387
https://community.tealiumiq.com/t5/Getting-Started-with-EventStream/Live-Events/ta-p/25283
Next steps are based on Use Case requirements:
Use "Eventstream" to flow live data to third parties:
https://community.tealiumiq.com/t5/Customer-Data-Hub/Introduction-to-EventStream/ta-p/20387
Use "Audiencestream" to build user profiles based on behaviour and preferences and provide these to third parties:
https://community.tealiumiq.com/t5/Customer-Data-Hub/Introduction-to-AudienceStream/ta-p/16087
Use "Dataaccess" to persist user data, allowing third party BI tools to connect and generated reporting:
https://community.tealiumiq.com/t5/Customer-Data-Hub/Introduction-to-DataAccess/ta-p/15611
... View more