Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

Sites Console - Not Seeing Page Analytics Data

Avatar

Level 3

Hi, 

I am facing an issue with sites console in AEM on showing data for the pages from Adobe Analytics integration. The data for Page Views and Unique Visitors are not coming out. 

 

Capture.PNG

 

I've followed all the steps from the documentation guide for integrating Adobe Analytics and AEM here. but I had no success.

It should appear like the following picture 

evidence.png

Please let me know if there is anything else that I need to do to get that working properly or if someone have already struggled with this kind of integration.

 

Thank you.

 

 

1 Accepted Solution

Avatar

Correct answer by
Level 3

It looks like the issue was in Adobe Analytics implementation itself. I was able to solve this issue by changing the Page Name variable to get a specific pattern in Launch. So, AEM could grab the page Views in the Sites Console.

 

The following patteern has to be applied to the pah url of the page:

PATH_OF_THE_PAGE.replace(/(.*)\..*/,'$1').replace(/^\//g,'').replace(/\//g, ':');

 

it will return something like below:

content:example:page

 

View solution in original post

1 Reply

Avatar

Correct answer by
Level 3

It looks like the issue was in Adobe Analytics implementation itself. I was able to solve this issue by changing the Page Name variable to get a specific pattern in Launch. So, AEM could grab the page Views in the Sites Console.

 

The following patteern has to be applied to the pah url of the page:

PATH_OF_THE_PAGE.replace(/(.*)\..*/,'$1').replace(/^\//g,'').replace(/\//g, ':');

 

it will return something like below:

content:example:page