Hey All - hope somebody can help out. I'm working on GA4 migration and I've stumbled upon an issue with getting the events setup right. Currently, all the events that are sent to UGA come from a custom javascript that calls are the UGA variables such as event category, event action and event label. I would like to convert that into the format that would be compatible with GA4. Now, I now that also involves mapping the correct variables. I've read the main guideline (https://community.tealiumiq.com/t5/Client-Side-Tags/Google-Analytics-4-GA4-Tag-Setup-Guide/ta-p/35288#toc-hId--1221243656) and respectfully, it is useless in that part. There were some similar tickets before, one ( https://community.tealiumiq.com/t5/Developers/Has-anyone-implemented-the-new-GA4-aka-App-Web-in-Tealium-IQ-yet/m-p/35782#M705) here that got me on a good track, but I need something more of a step-by-step guide. So, what we have is this UGA event: utag.link({ event_category: 'Web Vitals', event_action: wv_event.name, //e.g. "CLS" event_label: wv_event.id, // e.g v1-1619158612..... event_value: Math.round(wv_event.name === 'CLS' ? wv_event.delta * 1000 : wv_event.delta), event_is_noninteraction: true, event_transport: 'beacon' And what I want for GA4 is: event_category = event_name event_action = parameter1 event_label = parameter2 event_value = parameter 3 Is there anyone here who would be so kind and help me do the event code and show how to do the mapping? I'd be sooooo thankful!
... View more