SlideShare a Scribd company logo
ABOUT THE EVENT-DRIVEN DATA
LAYER & ADOBE ANALYTICS
Measurecamp Berlin
September 28, 2019
2
Kevin Haag
@kevalytics
● Adobe Analytics Tech Lead at Bounteous
● Adobe Certified Expert (ACE)
● Adobe & Google Consulting
Application Layer
>>> Data Layer <<<
Experience Layer
bnteo.us/measureCampBer
5Proprietary & Confidential
Google
[...] a JavaScript object that is used to pass information from
your website to your Tag Manager container.
6Proprietary & Confidential
Tealium
[...] the behind-the-scenes structure that web sites and
mobile apps tap into for timely and consistent visitor data.
7Proprietary & Confidential
W3C
[...] a JavaScript Object which can be used for communicating
[...] data to digital analytics and reporting servers.
8Proprietary & Confidential
[...] a JavaScript object that is
used to pass information
from your website to your
Tag Manager container.
They are all data layers.
[...] the behind-the-scenes
structure that web sites and
mobile apps tap into for
timely and consistent visitor
data.
[...] a JavaScript Object which
can be used for
communicating [...] data to
digital analytics and
reporting servers.
dataLayer utag_data digitalData
9Proprietary & Confidential
dataLayer = [{
“pageName” : “Home Page”
}];
They are all able to store contextual information.
utag_data = {
“pageName” : “Home Page”
};
digitalData = {
“pageName” : “Home Page”
};
dataLayer utag_data digitalData
10Proprietary & Confidential
You can look at all of them in your browser’s console.
EDDL vs. CEDDL
12Proprietary & Confidential
● EDDL
● Event-Driven-Data Layer
● Array-based
● Populated by the TMS
● Retrieve DLVs and e.g. store them in
Custom Dimensions
● Use events as triggers
● Good for asynchronous TMSs
● Good for SPAs
● CEDDL
● Customer Experience Digital Data Layer
● Object-based
● Populated by the dev team
● Retrieve DLVs and e.g. store them in
Custom Conversion Variables (eVars)
● No events
● Not good for asynchronous TMSs
● Good for static data
EDDL vs. CEDDL
Use Case: Form Submit
14Proprietary & Confidential
Whenever
a visitor successfully submits a form
Let
the data layer know
Store
relevant (non-pii) context data as data
layer variables
Use Case: Form Submit
Last NameFirst Name
Job TitleEmail
Submit
15Proprietary & Confidential
dataLayer.push({
“event”: “formSubmit”,
“jobTitle”: “Analyst”
});
Setup in GTM Action
Context
Adobe’s TMSs (DTM & Launch) don’t have a
built-in Data Layer Model.
Up until recently, there was no standardized
way of leveraging data layer events for AA.
18Proprietary & Confidential
How did Adobe folks track non-standard
events?
20Proprietary & Confidential
digitalData {
formData:{
jobTitle: “Analyst”
}
};
Context
1 Populate the data layer 2 Send a trigger to DTM/Launch
1. Direct Call Rule (DCR)
_satellite.track(“formSubmit”);
OR
2. Custom JS Event
var event = new
CustomEvent(“formSubmit”);
Action
So … how did Adobe folks track non-standard events?
Then
But now, there is a better way.
22Proprietary & Confidential
● Public Launch Extension
● Dispatches custom DL events
● Provides computed state for DLVs
Data Layer Manager Extension
23Proprietary & Confidential
var measureCamp = window.measureCamp = || [ ];
measureCamp.push({
‘event’: ‘formSubmit’,
‘jobTitle’: ‘Analyst’
})
Data Layer Manager Extension - Prerequisites
● Build an array-based data layer
● Name it whatever you want
● Push events to the data layer
24Proprietary & Confidential
var measureCamp = window.measureCamp = || [ ];
Best Practices for Instantiating a Data Layer
Set the value of the variable
measureCamp...
… to whatever is already
globally named measureCamp.
If measureCamp doesn’t exist,
set it to an empty array.
25Proprietary & Confidential
PreventsOverwriting
var measureCamp = window.measureCamp = || [ ];
Prevents
Destruction
26Proprietary & Confidential
● Specify your data layer’s root object
Data Layer Manager Extension - Extension Configuration
● Specify your data layer events
27Proprietary & Confidential
● Easily access computed state of the
data layer variables (DLVs)
Data Layer Manager Extension - Data Elements I
28Proprietary & Confidential
● Use the Data Elements to populate custom analytics variables (eVars & sProps) in rules
Data Layer Manager Extension - Data Elements II
29Proprietary & Confidential
● Use the Data Layer Events as events to trigger your rules
Data Layer Manager Extension - Events
30Proprietary & Confidential
In Summary
1. The EDDL is great for
- asynchronous deployments
- modern, event-heavy analytics
implementations
- site performance
- SPAs
2. GA folks always liked the EDDL
3. AA folks also like the EDDL
31Proprietary & Confidential
Data Layer Articles
● https://bnteo.us/data-layer-for-developers
● https://bnteo.us/data-layer-for-non-developers
● https://developers.google.com/tag-manager/devguide
● https://www.simoahava.com/analytics/data-layer/
● https://tealium.com/resource/fundamentals/what-is-a
-data-layer/
● https://www.w3.org/2013/12/ceddl-201312.pdf
EDDL & Data Layer Manager Extension
● https://jimalytics.com/tag-management/the-event-dri
ven-data-layer/
● https://techdocs.searchdiscovery.com/adobe-solution
s/adobe-launch/launch-extensions/data-layer-manag
er
Resources
32Proprietary & Confidential
General (Adobe-) Analytics Knowledge
● https://www.measure.chat/
● https://forums.adobe.com/thread/2543670
● https://docs.adobe.com/content/help/en/analytics/lan
ding/home.html
● https://www.youtube.com/channel/UC8I6bqCk7gO6
YdoMz6W5fvw
General (Google-) Analytics Podcasts
● https://www.analyticshour.io/
● https://die-sendung-mit-der-metrik.de/
● https://www.termfrequenz.de/podcast/beyon
d-pageviews-podcast/
● https://analyticsfreak.com/podcast
Resources
We are hiring like crazy!
34Proprietary & Confidential
bnteo.us/analytics-career
● Adobe Analytics Consultant
● Adobe Analytics Engineer
● Google Analytics Consultant
Current Analytics Openings (All Locations)
At Measurecamp, you can meet incredibly
smart people!
36Proprietary & Confidential
Maik
So...make sure to meet with them!
Markus B. Markus V. Helen
GA - GADS
Webinars
Podcast: Die
Sendung mit der
Metrik
Audio Book:
Dein Weg zum
Webanalysten
Podcast: Beyond
Pageviews
ITP & ETP
Book: Google
Analytics - Das
umfassende
Handbuch
GMP Con
Thank You!
Adobe Analytics Technical Lead
Kevin Haag
Email: kevin.haag@bounteous.com
@kevalytics

More Related Content

What's hot (20)

PDF
Instagram Clone | Instagram Clone App | Instagram Clone Script
SwethaMohan21
 
PDF
Sensor fusion of LiDAR and Camera for real time object detection - talk version
NECST Lab @ Politecnico di Milano
 
PPTX
Augmented reality
shyamsasi94
 
PPTX
MCA 6th Sem Project Report
PRADEEP GUPTA
 
PDF
Report (color 1,6,7,8,10)
Vijendrasingh Rathor
 
PDF
Low-Code vs. Programming – It Isn’t an Either/Or Decision
Appian
 
PPT
Haptic Technology
Supriya Kumari
 
DOCX
Augmented reality report
Satyendra Gupta
 
PPTX
Image recognition
Aseed Usmani
 
PPTX
E farming management system project ppt
nandinim26
 
DOCX
Mobile Based Attendance System
Abhishek Jha
 
PPS
Augmented Reality Presentation
SJSU
 
DOC
Clothing Store and Management System
Ashwini0951
 
PDF
Web portal final report
RESHMI RAVEENDRAN
 
PPT
Augmented Reality
Medha Behera
 
ODP
Introduction to Android App Development
Todd Burgess
 
PPTX
Low code application platforms
Matthew Weaver
 
PPTX
Course 4_Technical Solution Design Presentation Assignment_kai.pptx
kailashumashankar
 
PPT
Augmented reality(my ppt)
Srilakshmi Alla
 
PDF
Using AR for Vehicle Navigation
Mark Billinghurst
 
Instagram Clone | Instagram Clone App | Instagram Clone Script
SwethaMohan21
 
Sensor fusion of LiDAR and Camera for real time object detection - talk version
NECST Lab @ Politecnico di Milano
 
Augmented reality
shyamsasi94
 
MCA 6th Sem Project Report
PRADEEP GUPTA
 
Report (color 1,6,7,8,10)
Vijendrasingh Rathor
 
Low-Code vs. Programming – It Isn’t an Either/Or Decision
Appian
 
Haptic Technology
Supriya Kumari
 
Augmented reality report
Satyendra Gupta
 
Image recognition
Aseed Usmani
 
E farming management system project ppt
nandinim26
 
Mobile Based Attendance System
Abhishek Jha
 
Augmented Reality Presentation
SJSU
 
Clothing Store and Management System
Ashwini0951
 
Web portal final report
RESHMI RAVEENDRAN
 
Augmented Reality
Medha Behera
 
Introduction to Android App Development
Todd Burgess
 
Low code application platforms
Matthew Weaver
 
Course 4_Technical Solution Design Presentation Assignment_kai.pptx
kailashumashankar
 
Augmented reality(my ppt)
Srilakshmi Alla
 
Using AR for Vehicle Navigation
Mark Billinghurst
 

Similar to About The Event-Driven Data Layer & Adobe Analytics (20)

PDF
Why Data Virtualization? An Introduction
Denodo
 
PPTX
Enabling Next Gen Analytics with Azure Data Lake and StreamSets
Streamsets Inc.
 
PDF
GDG Cloud Southlake #16: Priyanka Vergadia: Scalable Data Analytics in Google...
James Anderson
 
PDF
Cloud-Native Patterns for Data-Intensive Applications
VMware Tanzu
 
PDF
An Analytics Engineer’s Guide to Streaming With Amy Chen | Current 2022
HostedbyConfluent
 
PPTX
Dynamics 365 saturday 2018 - data migration story
Andre Margono
 
PDF
Bridging the Last Mile: Getting Data to the People Who Need It (APAC)
Denodo
 
PDF
Operationalizing AI at scale using MADlib Flow - Greenplum Summit 2019
VMware Tanzu
 
PDF
Driving Business Transformation with Real-Time Analytics Using Apache Kafka a...
confluent
 
PPTX
The Enterprise Guide to Building a Data Mesh - Introducing SpecMesh
IanFurlong4
 
PDF
Supercharge your data analytics with BigQuery
Márton Kodok
 
PPTX
Agile Data Warehouse Modeling: Introduction to Data Vault Data Modeling
Kent Graziano
 
PDF
Running Data Platforms Like Products
VMware Tanzu
 
PDF
Microsoft Dynamics 365 xRM4Legal xRM4Accounting Technical Overview
David Blumentals
 
PPTX
TechEvent DWH Modernization
Trivadis
 
PDF
4. aws enterprise summit seoul 기존 엔터프라이즈 it 솔루션 클라우드로 이전하기 - thomas park
Amazon Web Services Korea
 
PDF
Data Virtualization for Data Architects (New Zealand)
Denodo
 
PDF
Speed up data preparation for ML pipelines on AWS
Data Science Milan
 
PPT
“Lights Out”Configuration using Tivoli Netcool AutoDiscovery Tools
Antonio Rolle
 
PDF
Enterprise guide to building a Data Mesh
Sion Smith
 
Why Data Virtualization? An Introduction
Denodo
 
Enabling Next Gen Analytics with Azure Data Lake and StreamSets
Streamsets Inc.
 
GDG Cloud Southlake #16: Priyanka Vergadia: Scalable Data Analytics in Google...
James Anderson
 
Cloud-Native Patterns for Data-Intensive Applications
VMware Tanzu
 
An Analytics Engineer’s Guide to Streaming With Amy Chen | Current 2022
HostedbyConfluent
 
Dynamics 365 saturday 2018 - data migration story
Andre Margono
 
Bridging the Last Mile: Getting Data to the People Who Need It (APAC)
Denodo
 
Operationalizing AI at scale using MADlib Flow - Greenplum Summit 2019
VMware Tanzu
 
Driving Business Transformation with Real-Time Analytics Using Apache Kafka a...
confluent
 
The Enterprise Guide to Building a Data Mesh - Introducing SpecMesh
IanFurlong4
 
Supercharge your data analytics with BigQuery
Márton Kodok
 
Agile Data Warehouse Modeling: Introduction to Data Vault Data Modeling
Kent Graziano
 
Running Data Platforms Like Products
VMware Tanzu
 
Microsoft Dynamics 365 xRM4Legal xRM4Accounting Technical Overview
David Blumentals
 
TechEvent DWH Modernization
Trivadis
 
4. aws enterprise summit seoul 기존 엔터프라이즈 it 솔루션 클라우드로 이전하기 - thomas park
Amazon Web Services Korea
 
Data Virtualization for Data Architects (New Zealand)
Denodo
 
Speed up data preparation for ML pipelines on AWS
Data Science Milan
 
“Lights Out”Configuration using Tivoli Netcool AutoDiscovery Tools
Antonio Rolle
 
Enterprise guide to building a Data Mesh
Sion Smith
 
Ad

Recently uploaded (20)

PDF
AUDITABILITY & COMPLIANCE OF AI SYSTEMS IN HEALTHCARE
GAHI Youssef
 
PDF
How to Connect Your On-Premises Site to AWS Using Site-to-Site VPN.pdf
Tamanna
 
PPTX
Rational Functions, Equations, and Inequalities (1).pptx
mdregaspi24
 
PPTX
Introduction to Artificial Intelligence.pptx
StarToon1
 
PDF
apidays Helsinki & North 2025 - Monetizing AI APIs: The New API Economy, Alla...
apidays
 
PDF
Context Engineering vs. Prompt Engineering, A Comprehensive Guide.pdf
Tamanna
 
PPTX
The _Operations_on_Functions_Addition subtruction Multiplication and Division...
mdregaspi24
 
PPT
Data base management system Transactions.ppt
gandhamcharan2006
 
PDF
What does good look like - CRAP Brighton 8 July 2025
Jan Kierzyk
 
PDF
Context Engineering for AI Agents, approaches, memories.pdf
Tamanna
 
PDF
WEF_Future_of_Global_Fintech_Second_Edition_2025.pdf
AproximacionAlFuturo
 
PPTX
GenAI-Introduction-to-Copilot-for-Bing-March-2025-FOR-HUB.pptx
cleydsonborges1
 
PPTX
Human-Action-Recognition-Understanding-Behavior.pptx
nreddyjanga
 
PDF
Avatar for apidays apidays PRO June 07, 2025 0 5 apidays Helsinki & North 2...
apidays
 
PDF
Data Chunking Strategies for RAG in 2025.pdf
Tamanna
 
PDF
List of all the AI prompt cheat codes.pdf
Avijit Kumar Roy
 
PDF
OPPOTUS - Malaysias on Malaysia 1Q2025.pdf
Oppotus
 
PPTX
Advanced_NLP_with_Transformers_PPT_final 50.pptx
Shiwani Gupta
 
PDF
apidays Helsinki & North 2025 - APIs in the healthcare sector: hospitals inte...
apidays
 
PPTX
apidays Munich 2025 - Building an AWS Serverless Application with Terraform, ...
apidays
 
AUDITABILITY & COMPLIANCE OF AI SYSTEMS IN HEALTHCARE
GAHI Youssef
 
How to Connect Your On-Premises Site to AWS Using Site-to-Site VPN.pdf
Tamanna
 
Rational Functions, Equations, and Inequalities (1).pptx
mdregaspi24
 
Introduction to Artificial Intelligence.pptx
StarToon1
 
apidays Helsinki & North 2025 - Monetizing AI APIs: The New API Economy, Alla...
apidays
 
Context Engineering vs. Prompt Engineering, A Comprehensive Guide.pdf
Tamanna
 
The _Operations_on_Functions_Addition subtruction Multiplication and Division...
mdregaspi24
 
Data base management system Transactions.ppt
gandhamcharan2006
 
What does good look like - CRAP Brighton 8 July 2025
Jan Kierzyk
 
Context Engineering for AI Agents, approaches, memories.pdf
Tamanna
 
WEF_Future_of_Global_Fintech_Second_Edition_2025.pdf
AproximacionAlFuturo
 
GenAI-Introduction-to-Copilot-for-Bing-March-2025-FOR-HUB.pptx
cleydsonborges1
 
Human-Action-Recognition-Understanding-Behavior.pptx
nreddyjanga
 
Avatar for apidays apidays PRO June 07, 2025 0 5 apidays Helsinki & North 2...
apidays
 
Data Chunking Strategies for RAG in 2025.pdf
Tamanna
 
List of all the AI prompt cheat codes.pdf
Avijit Kumar Roy
 
OPPOTUS - Malaysias on Malaysia 1Q2025.pdf
Oppotus
 
Advanced_NLP_with_Transformers_PPT_final 50.pptx
Shiwani Gupta
 
apidays Helsinki & North 2025 - APIs in the healthcare sector: hospitals inte...
apidays
 
apidays Munich 2025 - Building an AWS Serverless Application with Terraform, ...
apidays
 
Ad

About The Event-Driven Data Layer & Adobe Analytics

  • 1. ABOUT THE EVENT-DRIVEN DATA LAYER & ADOBE ANALYTICS Measurecamp Berlin September 28, 2019
  • 2. 2 Kevin Haag @kevalytics ● Adobe Analytics Tech Lead at Bounteous ● Adobe Certified Expert (ACE) ● Adobe & Google Consulting
  • 3. Application Layer >>> Data Layer <<< Experience Layer
  • 5. 5Proprietary & Confidential Google [...] a JavaScript object that is used to pass information from your website to your Tag Manager container.
  • 6. 6Proprietary & Confidential Tealium [...] the behind-the-scenes structure that web sites and mobile apps tap into for timely and consistent visitor data.
  • 7. 7Proprietary & Confidential W3C [...] a JavaScript Object which can be used for communicating [...] data to digital analytics and reporting servers.
  • 8. 8Proprietary & Confidential [...] a JavaScript object that is used to pass information from your website to your Tag Manager container. They are all data layers. [...] the behind-the-scenes structure that web sites and mobile apps tap into for timely and consistent visitor data. [...] a JavaScript Object which can be used for communicating [...] data to digital analytics and reporting servers. dataLayer utag_data digitalData
  • 9. 9Proprietary & Confidential dataLayer = [{ “pageName” : “Home Page” }]; They are all able to store contextual information. utag_data = { “pageName” : “Home Page” }; digitalData = { “pageName” : “Home Page” }; dataLayer utag_data digitalData
  • 10. 10Proprietary & Confidential You can look at all of them in your browser’s console.
  • 12. 12Proprietary & Confidential ● EDDL ● Event-Driven-Data Layer ● Array-based ● Populated by the TMS ● Retrieve DLVs and e.g. store them in Custom Dimensions ● Use events as triggers ● Good for asynchronous TMSs ● Good for SPAs ● CEDDL ● Customer Experience Digital Data Layer ● Object-based ● Populated by the dev team ● Retrieve DLVs and e.g. store them in Custom Conversion Variables (eVars) ● No events ● Not good for asynchronous TMSs ● Good for static data EDDL vs. CEDDL
  • 13. Use Case: Form Submit
  • 14. 14Proprietary & Confidential Whenever a visitor successfully submits a form Let the data layer know Store relevant (non-pii) context data as data layer variables Use Case: Form Submit Last NameFirst Name Job TitleEmail Submit
  • 15. 15Proprietary & Confidential dataLayer.push({ “event”: “formSubmit”, “jobTitle”: “Analyst” }); Setup in GTM Action Context
  • 16. Adobe’s TMSs (DTM & Launch) don’t have a built-in Data Layer Model.
  • 17. Up until recently, there was no standardized way of leveraging data layer events for AA.
  • 19. How did Adobe folks track non-standard events?
  • 20. 20Proprietary & Confidential digitalData { formData:{ jobTitle: “Analyst” } }; Context 1 Populate the data layer 2 Send a trigger to DTM/Launch 1. Direct Call Rule (DCR) _satellite.track(“formSubmit”); OR 2. Custom JS Event var event = new CustomEvent(“formSubmit”); Action So … how did Adobe folks track non-standard events? Then
  • 21. But now, there is a better way.
  • 22. 22Proprietary & Confidential ● Public Launch Extension ● Dispatches custom DL events ● Provides computed state for DLVs Data Layer Manager Extension
  • 23. 23Proprietary & Confidential var measureCamp = window.measureCamp = || [ ]; measureCamp.push({ ‘event’: ‘formSubmit’, ‘jobTitle’: ‘Analyst’ }) Data Layer Manager Extension - Prerequisites ● Build an array-based data layer ● Name it whatever you want ● Push events to the data layer
  • 24. 24Proprietary & Confidential var measureCamp = window.measureCamp = || [ ]; Best Practices for Instantiating a Data Layer Set the value of the variable measureCamp... … to whatever is already globally named measureCamp. If measureCamp doesn’t exist, set it to an empty array.
  • 25. 25Proprietary & Confidential PreventsOverwriting var measureCamp = window.measureCamp = || [ ]; Prevents Destruction
  • 26. 26Proprietary & Confidential ● Specify your data layer’s root object Data Layer Manager Extension - Extension Configuration ● Specify your data layer events
  • 27. 27Proprietary & Confidential ● Easily access computed state of the data layer variables (DLVs) Data Layer Manager Extension - Data Elements I
  • 28. 28Proprietary & Confidential ● Use the Data Elements to populate custom analytics variables (eVars & sProps) in rules Data Layer Manager Extension - Data Elements II
  • 29. 29Proprietary & Confidential ● Use the Data Layer Events as events to trigger your rules Data Layer Manager Extension - Events
  • 30. 30Proprietary & Confidential In Summary 1. The EDDL is great for - asynchronous deployments - modern, event-heavy analytics implementations - site performance - SPAs 2. GA folks always liked the EDDL 3. AA folks also like the EDDL
  • 31. 31Proprietary & Confidential Data Layer Articles ● https://bnteo.us/data-layer-for-developers ● https://bnteo.us/data-layer-for-non-developers ● https://developers.google.com/tag-manager/devguide ● https://www.simoahava.com/analytics/data-layer/ ● https://tealium.com/resource/fundamentals/what-is-a -data-layer/ ● https://www.w3.org/2013/12/ceddl-201312.pdf EDDL & Data Layer Manager Extension ● https://jimalytics.com/tag-management/the-event-dri ven-data-layer/ ● https://techdocs.searchdiscovery.com/adobe-solution s/adobe-launch/launch-extensions/data-layer-manag er Resources
  • 32. 32Proprietary & Confidential General (Adobe-) Analytics Knowledge ● https://www.measure.chat/ ● https://forums.adobe.com/thread/2543670 ● https://docs.adobe.com/content/help/en/analytics/lan ding/home.html ● https://www.youtube.com/channel/UC8I6bqCk7gO6 YdoMz6W5fvw General (Google-) Analytics Podcasts ● https://www.analyticshour.io/ ● https://die-sendung-mit-der-metrik.de/ ● https://www.termfrequenz.de/podcast/beyon d-pageviews-podcast/ ● https://analyticsfreak.com/podcast Resources
  • 33. We are hiring like crazy!
  • 34. 34Proprietary & Confidential bnteo.us/analytics-career ● Adobe Analytics Consultant ● Adobe Analytics Engineer ● Google Analytics Consultant Current Analytics Openings (All Locations)
  • 35. At Measurecamp, you can meet incredibly smart people!
  • 36. 36Proprietary & Confidential Maik So...make sure to meet with them! Markus B. Markus V. Helen GA - GADS Webinars Podcast: Die Sendung mit der Metrik Audio Book: Dein Weg zum Webanalysten Podcast: Beyond Pageviews ITP & ETP Book: Google Analytics - Das umfassende Handbuch GMP Con
  • 37. Thank You! Adobe Analytics Technical Lead Kevin Haag Email: [email protected] @kevalytics