Expand my Community achievements bar.

Join us at Adobe Summit 2024 for the Coffee Break Q&A Live series, a unique opportunity to network with and learn from expert users, the Adobe product team, and Adobe partners in a small group, 30 minute AMA conversations.
SOLVED

DTM: Google Analytics Tool

Avatar

Level 2
Level 2

I have created a property that includes multiple domains, because I need a single set-up for Adobe Analytics.  My question is, can I use the Google Analytics "tool" if I need the different domains to go into different GA accounts? It seems that you can't tell the tool exactly which domain to fire on, and it will only use one account.

Am I not seeing something, or is the best workaround for this shortcoming to create domain-driven page load rules and just loading the code provided by Google?

1 Accepted Solution

Avatar

Correct answer by
Level 2
Level 2

Wow, no answers?

Vennouem Vennouem, I ended up turning off the Google Analytics Tool and creating individual page load rules for each account -- entering the JS code provided by Google Analytics in the JavaScript/Third Party Tags area (don't include the <script> and </script> tags). You have to create a separate rule for each domain/GA account.  

The bummer with this is that you will have to create separate rules for your staging and productions environments for each domain, creating a subdomain criteria (or something else) for firing the correct GA code.

This solution is working fine for me.

View solution in original post

6 Replies

Avatar

Level 6

I have tried setting this up myself last year when Adobe acquired Satellite, now DTM.  There is no way to use the GA Tool on multiple domains.  The work around that I did was create page load rules and dynamically set GA Account ID based on domain.  This requires knowledge of javascript. 

Another work around is to create a DTM account for each domain, if you do that you will be able to use the tool, this solution requires you to have multiple DTM accounts though which is sounds like your trying to avoid.  The first solution requires a developer, the second does not.

Avatar

Correct answer by
Level 2
Level 2

Wow, no answers?

Vennouem Vennouem, I ended up turning off the Google Analytics Tool and creating individual page load rules for each account -- entering the JS code provided by Google Analytics in the JavaScript/Third Party Tags area (don't include the <script> and </script> tags). You have to create a separate rule for each domain/GA account.  

The bummer with this is that you will have to create separate rules for your staging and productions environments for each domain, creating a subdomain criteria (or something else) for firing the correct GA code.

This solution is working fine for me.

Avatar

Level 2
Level 2

Thanks, @Mike Miller.  I did actually set it up easily, creating individual page load rules for each GA account I needed -- using domain-based conditions.  I didn't need to write any JS to set the account dynamically.

You do have to create separate rules for your different environments (production and stage), if you have a staging GA account.

Avatar

Level 6

That works too.  If you went the route I suggested, you would only need one page load rule and within the rule you dynamically set the account id based on domain, again though this requires more technical knowledge.  The downside that I have seen with implementing duplicate page load rules for the same script (GA in this case) for multiple domains is that DTM is not built to only run the rules that the domain needs.  Instead it loads everything in the DTM library regardless if you need it or not.  

Before DTM executes the script, they check to see if domain is set and matches the site your currently on, if so, it fires, it it doesn't, than the rule does not fire.  The problem here, the code still needs to be read which in my experience has increased our page load time.

The more lines of code that you have to run through, the longer the page load time, its that simple. It may not matter to your use case, but in my business, every milli second counts.  Glad you found a working solution, but I think its also important to understand the downsides, which most people are not well informed on regarding DTM.

Avatar

Level 2
Level 2

Great points. I may give your approach a try. The JS code really wouldn't be complicated.

Thanks!