post_event_list data structure quesetions | Community
Skip to main content
October 18, 2023
Question

post_event_list data structure quesetions

  • October 18, 2023
  • 1 reply
  • 987 views

Hi, 

I've some specific questions regarding the data structure of contents of my post_event_list. 

I don't understand what they meant. Could somebody shed some light on them?

 

1. 220 = 31, does it mean event 220 happened 31 times? Or was it something else? 


2. What does ".00" in 1799 = 31.00 stand for? 

 

Thanks,

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

1 reply

Jennifer_Dungan
Community Advisor and Adobe Champion
Community Advisor and Adobe Champion
October 18, 2023

You may not be aware of this, but Events can actually be configured as Counters (default), Numeric, or even Currency based.

 

 

Counter is simple, these always increment as "1" and thus, in the tracking are just:

s.events="event1";

 

Numeric and Currency, however, allow you to pass a value that you want to increment the event by (Numeric is in integer format, Currency is in standard 2 decimal place values), so:

s.events="event2=5,event3=9.99";

 

https://experienceleague.adobe.com/docs/analytics/implementation/vars/page-vars/events/events-overview.html?lang=en

 

 

1. 220 = 31, does it mean event 220 happened 31 times? Or was it something else? 

220 (which is not event220, but rather event21**) was triggered once in this row, but is incrementing by 31 (so it should count as 31, not 1)

 

2. What does ".00" in 1799 = 31.00 stand for?

This means increment the event by $31.00   (I believe if the event is currency based, and the code only passes s.events="event2=9" that Adobe will automatically convert to a currency format of 9.00

 

Similar to the first question, this event is based in dollar (or whatever currency you are set up for) and should increment the passed value.

 

 

** For those unfamiliar with Raw Data Feeds (anyone who comes across this question), the post_event_list sends back the backend id of the events, rather than numeric value from the visible event.

 

i.e. Frontend "event21" = 220 in Raw Data

 

In order to find the correct mapping, you must use the events.tsv provided along with the Raw Data Feed.

amolsingh
March 5, 2024

@jennifer_dungan  - I see the same issue in my data feed. Does this mean the event counted 31 times in one server call? I'm pretty sure i've never configured it to count more than once in Adobe Launch & i don't use the processing rules.