Entries Calculation | Community
Skip to main content
New Participant
January 21, 2022
Solved

Entries Calculation

  • January 21, 2022
  • 1 reply
  • 749 views

Hi - I wanted to use adobe data feed to replicate visits and entries using pyspark and then to load into snowflake table. I was able to derive logic for visit by referring below documentation.

 

https://experienceleague.adobe.com/docs/analytics/export/analytics-data-feed/data-feed-contents/datafeeds-calculate.html?lang=en#custom-events

 

But i couldn't find to similar document to calculate for entries. Can someone help me?

 

Thanks in advance.

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 VaniBhemarasetty

@sn-l 

The ‘Entries’ metric shows the number of times a given dimension item is captured as the first value in a visit. This metric is helpful when you want to understand more about the first impressions visitors have on your site.

https://experienceleague.adobe.com/docs/analytics/components/metrics/entries.html?lang=en

 

That means you would need to look at this logic in data feed 

post_evar should be having a value with visit_page_num =1

This gives you all the first hits when a particular dimension had value

 

Hope this helps

1 reply

VaniBhemarasetty
VaniBhemarasettyAccepted solution
Employee
March 15, 2022

@sn-l 

The ‘Entries’ metric shows the number of times a given dimension item is captured as the first value in a visit. This metric is helpful when you want to understand more about the first impressions visitors have on your site.

https://experienceleague.adobe.com/docs/analytics/components/metrics/entries.html?lang=en

 

That means you would need to look at this logic in data feed 

post_evar should be having a value with visit_page_num =1

This gives you all the first hits when a particular dimension had value

 

Hope this helps