Hi, I am enabling the asset insights tracker for an AEM page. I have created 3 rules for this:
1. Asset Impression
2. Asset Click
3. Asset Click without destination
Here is my configuration:
I have several problems here:
1. The page load and click beacon are firing twice
2. I want my asset.idlist on my link click beacon, but it is only showing on page load beacon, how can I add this?
Can you guys help me troubleshooting this? Thank you so much.
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
While I don't use that function... perhaps the solution is to use those AEM triggers to set variables, but not yet send the beacon?
Basically, use those triggers to set dimensions and metrics (so that they are "ready"), then have one tracking call that sends your core tracking plus the values that were set by these functions?
You will have to make sure that all those calls happen in the right order (so that the AEM triggers are fired first before the rule with the send beacon).
Try turning on debug mode for your Launch implementation...
In your console, run the following:
_satellite.setDebug(true)
This will allow you to see all the steps (and order) that things are being run in your Launch implementation.
You can turn it off by using:
_satellite.setDebug(false)
Views
Replies
Total Likes
My problem now is asset.idlist is not showing in my link click beacon. It only shows in page load beacon
Views
Replies
Total Likes
While I don't use that function... perhaps the solution is to use those AEM triggers to set variables, but not yet send the beacon?
Basically, use those triggers to set dimensions and metrics (so that they are "ready"), then have one tracking call that sends your core tracking plus the values that were set by these functions?
You will have to make sure that all those calls happen in the right order (so that the AEM triggers are fired first before the rule with the send beacon).
Try turning on debug mode for your Launch implementation...
In your console, run the following:
_satellite.setDebug(true)
This will allow you to see all the steps (and order) that things are being run in your Launch implementation.
You can turn it off by using:
_satellite.setDebug(false)
Views
Replies
Total Likes