This help page describes how eVars work as a dimension. For information on how to implement eVars, see eVars in the Implement user guide.
eVars are custom variables that you can use however you like. If you have a solution design document, most dimensions specific to your organization end up as eVars, additional to the default dimension available with Adobe Analytics, like ‘Page Name’, ‘Referring Domain’, ‘Channel’. See Dimension Overview for more information.
By default, eVars persist beyond the hit they are set on. You can customize their expiration and allocation under Conversion variables in Report suite settings. See below for an example of eVar definitions in the Conversion variables UI.
The number of available eVars depends on your contract with Adobe. Up to 250 eVars are available if your contract with Adobe supports it.
The (upper or lower) case used in reporting is based on the first value the backend system registers. This value could either be the first instance ever seen or vary by some time period (e.g., monthly), depending on the variety and quantity of data associated with the report suite.
Each eVar collects data from the v1
- v250
query string in image requests. For example, the v1
query string parameter collects data for eVar1, while the v222
query string parameter collects data for eVar222.
AppMeasurement, which compiles JavaScript variables into an image request for data collection, uses the variables eVar1
- eVar250
. See eVar in the Implement user guide for implementation guidelines.
Since eVars contain custom strings in your implementation, your organization determines what the dimension items are for each eVar. Make sure that you record the purpose of each eVar and typical dimension items in a solution design document.
When you send data to Adobe Analytics, data collection servers translate the hit into a single row of data with hundreds of columns. Two columns are dedicated to each eVar; one for direct data collection, and the other for persisting values.
Under almost all circumstances, the post_evar
column is used in reports.
Success events and eVars are frequently defined in different image requests. The post_evar
column allows eVar values to tie themselves to events, showing data in reporting. Take the following visit for example:
A simplified version of the raw data would look similar to the following:
visitor_id |
pagename |
evar1 |
post_evar1 |
event_list |
---|---|---|---|---|
examplevisitor_987 |
Home page |
|||
examplevisitor_987 |
Search results |
cats |
cats |
event1 |
examplevisitor_987 |
Product page |
cats |
prodView |
|
examplevisitor_987 |
Cart |
cats |
scAdd |
|
examplevisitor_987 |
Checkout |
cats |
scCheckout |
|
examplevisitor_987 |
Purchase confirmation |
cats |
purchase |
visitor_id
column ties hits to the same visitor. In actual raw data, the concatenated values of visid_high
and visid_low
determine visitor ID.pagename
column populates the Pages dimension.evar
column determines the hits when eVar1 was explicitly set.post_evar1
carries the previous value, dependent on the variable’s allocation and expiration set under report suite settings.event_list
column contains all metric data. For this example, event1
is ‘Searches’, and the other events are standard shopping cart metrics. In actual raw data, event_list
contains a comma-delimited set of numbers with a lookup table tying those numbers to a metric.Tools in Adobe Analytics, such as Analysis Workspace, work off of this collected data. For example, if you pulled a report using eVar1 as the dimension and Orders as the metric, you would see a report similar to the following:
Internal search term (eVar1) |
Orders |
---|---|
cats |
1 |
Analysis Workspace pulls this report using the following logic:
event_list
values, and pick out all the hits with purchase
in them.post_evar1
value.Since allocation and expiration determine what values persist, they are vital in getting the most value out of an analytics implementation. Adobe highly recommends that you discuss within your organization how multiple values for each eVar are handled (allocation) and when eVars stop persisting data (expiration).
post_evar
column.You can change eVar allocation and expiration under Conversion variables in Report suite settings.
Adobe recommends using eVars in most cases, supported through the following:
See prop for more comparisons between props and eVars.