Dear Team,
I need assistance determining whether Adobe Analytics Activity Map is properly implemented on our website. Could you provide guidance on how to check this using the browser network tab, console, source, Omnibug, or any other relevant tools?
I’ve installed the Adobe Analytics Activity Map extension, but it isn’t displaying any data. Any help would be appreciated.
Thank you.
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Hello @priyankagupta20,
Here is the workaround for activity map issue:
Here is the link to the discussion thread i posted about workaround for activity map issue.
Hello @priyankagupta20,
Here is the workaround for activity map issue:
Here is the link to the discussion thread i posted about workaround for activity map issue.
The solution posted by @Krishna_Musku will fix the extension, but if you want to test Activity Map data in real time, it's sent as context data.
In your network panel, when you filter for your tracking calls, it will appear after your eVars:
In Omnibug, there is an entire section dedicated to Activity Map:
There are a few things to keep in mind, Activity Map is a deferred tracking item. The initial page will have nothing, when you click on an anchor tag, this will pick up the values from the click on the anchor and pass them on the following page (or on the "click action" if you are using s.tl calls)
Additionally, if you are using Web SDK you can enable Activity Map in the extension.
What is a bit of a downside on this one is that you will NOT see the payload in Omnibug anymore since it is a beacon that is sent that is neither GET nor POST.
The actual request payload can only be see in the network tab, if you filter for "collect"
To work around this issue, in the custom code section, you can add the following debug information (at least that is my go-to piece of code to see what's going on).
(side note: the ">>>" prefix I usually add to make it easier to filter for my own debug output)
_satellite.logger.debug(`>>> ActivityMap Click\n\tPage Name: ${content.pageName}\n\tLink Region: ${content.linkRegion}\n\tLink Name: ${content.linkName}\n\tLink URL: ${content.linkUrl}\n\tLink Type: ${content.linkType}`);
Provided that you have debugging enabled and log levels in your browser are set to verbose.
_satellite.setDebug(true);
This will print out something like this upon clicks
There are a few things that you can check before going to the network tab or debugging extension.
1. Ensure that a report suite has an Activity map enabled.
2. After clicking any CTA, a new page should be loaded to see the attributes of Activity map (Link, page, region).
If everything is correct, install Omnibug, a Chrome extension to decode and display outgoing digital marketing requests.
@ankitagarwal05 what are your thoughts on this?