Url is getting ingested into adobe analytics | Community
Skip to main content
September 21, 2022
Solved

Url is getting ingested into adobe analytics

  • September 21, 2022
  • 2 replies
  • 1295 views

Hi Community,

 

We are trying to ingest pageNames to adobe analytics but in some cases instead of pageName, pageUrl is getting ingested, due to this inconsistency data is not looking correctly in adobe analytics dashboard.

 

Is there any configuration required at code level so that I can fix this type of issue.

Please find the attachment below.

 

Thanks,

sakhtar

 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Charles_Thirupathi

Hi @sakhtar,

 

It's because pageName is not defined/not working as expected for those URLs. Make sure pageName (s.pageName) defined in the implementation works for all those URL's.

 

If the pageName (s.pageName) variable is not defined then the respective URL(s.pageURL) value of the page will be assigned to pageName by default.

 

Thanks,

Charles

2 replies

Charles_Thirupathi
Charles_ThirupathiAccepted solution
Level 4
September 21, 2022

Hi @sakhtar,

 

It's because pageName is not defined/not working as expected for those URLs. Make sure pageName (s.pageName) defined in the implementation works for all those URL's.

 

If the pageName (s.pageName) variable is not defined then the respective URL(s.pageURL) value of the page will be assigned to pageName by default.

 

Thanks,

Charles

sakhtarAuthor
September 21, 2022

As you can see in above screenshots, pageName and pageUrl is present in dashboard
eg: 

pageName: edit-campaign:basic-details-react

pageURL: https://sophia-ui-local.corp.adobe.com:8091/ui/campaigns/48165/basic-details

 

pageName is already assigned to every route we have in our application, above is just one example from them.

Adobe Experience Platform Debugger Screenshot

 

In above screenshot, as you can see 2 entries are present, first one is when application is loading and second one when application is fully loaded, in both the cases pageURL is same , but in first one pageName is not present or not defined.

Pls Note: First entry is not coming from our code.
can we handle these type of scenarios.

sakhtarAuthor
September 21, 2022

Thanks Charles for jumping on to the call and solving the issue on priority