SlideShare ist ein Scribd-Unternehmen logo
1 von 83
Downloaden Sie, um offline zu lesen
Google Analytics Joris Roebben ( [email_address] ) Tom Michiels ( [email_address] ) www.queromedia.com
1. Introduction ,[object Object],urchin.js GA.js 2004 2005 2007
Conventions ,[object Object],[object Object]
Google Analytics advantages ,[object Object],[object Object],[object Object],[object Object],[object Object]
Google Analytics disadvantages ,[object Object],[object Object],[object Object],[object Object],[object Object]
2. Google Analytics interface ,[object Object],[object Object],[object Object]
Calendar
Reporting ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
3. Setup Google Analytics ,[object Object],[object Object],[object Object],[object Object]
Best practice for GA accounts ,[object Object],[object Object],[object Object],[object Object]
Sign up ,[object Object],[object Object]
Get the GATC ,[object Object],[object Object],[object Object]
urchin.js ,[object Object],[object Object],<script src=&quot;http://www.google-analytics.com/urchin.js&quot; type=&quot;text/javascript&quot;> </script> <script type=&quot;text/javascript&quot;> _uacct = &quot;UA-123456-1&quot;; urchinTracker(); </script> </body> </html>
GA.js ,[object Object],[object Object],<script type=&quot;text/javascript&quot;> var gaJsHost = ((&quot;https:&quot; == document.location.protocol) ? &quot;https://ssl.&quot; : &quot;http://www.&quot;);document.write(&quot;lt;script src='&quot; + gaJsHost + &quot;google-analytics.com/ga.js' type='text/javascript'>lt;script>&quot; ); </script> <script type=&quot;text/javascript&quot;> var pageTracker = _gat._getTracker(&quot;UA-123456-1&quot;);pageTracker._initData();pageTracker._trackPaginaweergave();</script> </body> </html>
Host your own GATC ,[object Object],[object Object],<script src=&quot;http://www.mydomain.com/mytrackingcode.js&quot; type=&quot;text/javascript&quot;> </script> <script type=&quot;text/javascript&quot;> _uacct = &quot;UA-123456-1&quot;; urchinTracker(); </script>
Check your installation ,[object Object],[object Object],[object Object]
Easy implementation ,[object Object],[object Object],[object Object],[object Object],[object Object]
Access manager ,[object Object],[object Object],[object Object]
Add user
4. Adding AdWords to Google Analytics ,[object Object],[object Object]
Step 1: check GATC ,[object Object]
Step 2: Login to Google AdWords ,[object Object]
Step 3: Tab Analytics  ,[object Object]
Step 4: Link to existing GA account
Step 5: Account preferences ,[object Object]
5. Profiles and Filters ,[object Object],[object Object],[object Object],[object Object],[object Object]
Best practices ,[object Object],[object Object]
Data needed for profile ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
GATC for different profiles <script src=&quot;http://www.google-analytics.com/urchin.js&quot; type=&quot;text/javascript&quot;> </script> <script type=&quot;text/javascript&quot;> _uacct = &quot;UA- 123456-1 &quot;; urchinTracker(); </script> <script src=&quot;http://www.google-analytics.com/urchin.js&quot; type=&quot;text/javascript&quot;> </script> <script type=&quot;text/javascript&quot;> _uacct = &quot;UA- 123456-2 &quot;; urchinTracker(); </script> <script src=&quot;http://www.google-analytics.com/urchin.js&quot; type=&quot;text/javascript&quot;> </script> <script type=&quot;text/javascript&quot;> _uacct = &quot;UA- 654321-1 &quot;; urchinTracker(); </script>
Filters ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
How do filters work? ,[object Object],[object Object],[object Object],[object Object],[object Object]
Multiple filters ,[object Object],[object Object],[object Object],[object Object],[object Object]
Filterfields ,[object Object],[object Object],[object Object],[object Object],[object Object]
Possible values for Filterfields ,[object Object],[object Object]
Filter Patterns ,[object Object],[object Object],[object Object],[object Object],[object Object]
Filter Type ,[object Object],[object Object],[object Object]
5.1 Exclude all traffic from a domain
5.2 Exclude all traffic from an IP address IP ranges with RegEx !!!
5.3 Include only traffic to a subdirectory
5.4 Include / Exclude filter (1)
5.4 Include / Exclude filter (2)
5.4 Include / Exclude filter (3)
5.5 Search and replace filter (1)
5.5 Search and replace filter (2) ,[object Object],[object Object]
5.6 Uppercase / Lowercase filter
5.7 Lookup table filter ,[object Object],[object Object],[object Object],[object Object]
5.8 Advanced filters ,[object Object],[object Object],[object Object],[object Object],[object Object]
Examples of advanced filters (1)
Examples of advanced filters (2)
6. Custom segmentation ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Custom segmentation example
Custom segmentation code ,[object Object],[object Object],[object Object],[object Object],<body onLoad=”javascript:_utmSetVar(‘member’);”> <body onLoad=”javascript:_utmSetVar(‘customer’);”>
User Defined Values
RegEx Regular expressions are used to match or capture portions of a field using wildcards and metacharacters. They are often used for text manipulation tasks. Most of the filters included in Google Analytics use these expressions to match the data and perform an action when a match is achieved. For instance, an  exclude  filter is designed to exclude the hit if the regular expression in the filter matches the data contained in the field specified by the filter. Regular expressions are text strings that contain characters, numbers, and wildcards. Note that these wildcard characters can be used literally by escaping them with a backslash 'apos;. For example, when entering  www.google.com , escape the periods with a backslash:  wwwgooglecom
RegEx ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
7. Goals ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Setting up goals
Goals howto ,[object Object],[object Object],[object Object],[object Object],[object Object]
Goals visualisation (1)
Goals visualisation (2)
Funnels ,[object Object],[object Object],[object Object],[object Object]
Funnel visualisation
8. E-commerce tracking ,[object Object],[object Object],[object Object]
Implementing E-commerce tracking ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
E-commerce for urchin.js <form style=&quot;display:none;&quot; name=&quot;utmform&quot;> <textarea id=&quot;utmtrans&quot;> UTM:T|[order-id]|[affiliation]|[total]|[tax]|[shipping]|[city]|[state]|[country] UTM:I|[order-id]|[sku/code]|[productname]|[category]|[price]|[quantity] UTM:I|[order-id]|[sku/code]|[productname]|[category]|[price]|[quantity] </textarea> </form>
E-commerce for GA.js <script src=&quot;http://www.google-analytics.com/ga.js&quot; type=&quot;text/javascript&quot;></script> <script type=&quot;text/javascript&quot;> var pageTracker = _gat._getTracker(&quot;UA-XXXXX-1&quot;); pageTracker._initData(); pageTracker._addTrans( &quot;1234&quot;,  // Order ID &quot;partner&quot;,  // Affiliation &quot;2500.25&quot;,  // Total &quot;200.25&quot;,  // Tax &quot;3&quot;,  // Shipping &quot;Brussels&quot;,  // City &quot;Brabant&quot;,  // State &quot;Belgium&quot;  // Country ); pageTracker._addItem( &quot;1234&quot;,  // Order ID &quot;MTB25&quot;,  // SKU &quot;Mountainbike&quot;,  // Product Name  &quot;Off-road&quot;,  // Category &quot;1500&quot;,  // Price &quot;1&quot;  // Quantity ); pageTracker._addItem( &quot;1234&quot;,  // Order ID &quot;MTB44&quot;,  // SKU &quot;Mountainbike&quot;,  // Product Name  &quot;Cross&quot;,  // Category &quot;1000.25&quot;,  // Price &quot;1&quot;  // Quantity ); pageTracker._trackTrans(); </script>
Complete process
E-commerce reports
E-commerce reports
E-commerce reports
E-commerce reports
9. Tips & Tricks: Site Search
Tips & Tricks: Event tracking ,[object Object],[object Object],[object Object],[object Object],<a href=&quot;http://www.webiste.com/pdf/document1.pdf&quot; onClick=&quot;javascript:urchinTracker('/pdf/document1');&quot;>
Tips & Tricks: Multi-domain tracking ,[object Object],[object Object],[object Object],[object Object]
Multi-domain tracking urchin.js (1) ,[object Object],<script src=&quot;http://www.google-analytics.com/urchin.js&quot; type=&quot;text/javascript&quot;> </script> <script type=&quot;text/javascript&quot;> _uacct=&quot;UA-xxxx-x&quot;; _udn=&quot;none&quot;; _ulink=1; urchinTracker(); </script>
Multi-domain tracking urchin.js (2) ,[object Object],<a href=&quot;https://www.secondsite.com/?login=parameters&quot;>Log in Now</a> <script type=&quot;text/javascript&quot;> document.write('<a href=&quot;javascript:__utmLinker(apos; https://www.secondsite.com/?login=parametersapos;);&quot;>Log in Now</a>'); </script> <noscript> <a href=&quot; https://www.secondsite.com/?login=parameters &quot;>Log in Now</a> </noscript>
Multi-domain tracking GA.js (1) ,[object Object],<script type=&quot;text/javascript&quot;> var gaJsHost = ((&quot;https:&quot; == document.location.protocol) ? &quot; https://ssl.&quot; : &quot;http://www.&quot;); document.write(&quot;lt;script src='&quot; + gaJsHost + &quot;google-analytics.com/ga.js ' type='text/javascript'>lt;script>&quot; ); </script> <script type=&quot;text/javascript&quot;> var pageTracker = _gat._getTracker(&quot;UA-12345-1&quot;);  pageTracker._setDomainName(&quot;none&quot;); pageTracker._setAllowLinker(true);   pageTracker._initData(); pageTracker._trackPaginaweergave(); </script>
Multi-domain tracking GA.js (2) ,[object Object],<a href=&quot;https://www.secondsite.com/?login=parameters&quot;>Log in Now</a> <script type=&quot;text/javascript&quot;> document.write(‘<a href=&quot;javascript:pageTracker._link(apos;https://www.secondsite.com/?login=parametersapos;);&quot;>Log in Now</a>'' );</script> <noscript> <a href=&quot;https://www.secondsite.com/?login=parameters&quot;>Log in Now</a>  </noscript>
Tips & Tricks: Tracking outbound links ,[object Object],[object Object],[object Object],[object Object],<a href=&quot;http://www.otherdomain.com&quot; onClick=&quot;javascript:urchinTracker('/outbound/otherdomain');&quot;>
Tips & Tricks: Tagging inbound links http://www.website.com/pagina.html http://www.website.com/pagina.html?utm_source=partner&utm_medium=banner&utm_campaign=nl&utm_term=zoekwoord ,[object Object],[object Object],[object Object]
10. Conclusion
11. Roundup  1. Create a Google Analytics account. 2. Analyze the website. 3. Create and Configure profiles. a) Create filters. b) Create goals and funnels. c) Create recommended profiles. 4. Edit the tracking code. 5. Modify the web site. 6. Add the tracking code to web site pages. 7. Tag marketing campaigns. 8. Enable e-commerce transaction tracking. 9. Implement custom segmentation. 10. Configure other administrative features. a) User accounts and report access. b) Automated email report delivery.
12. Q & A

Weitere ähnliche Inhalte

Was ist angesagt?

Google Analytics for Dummies
Google Analytics for DummiesGoogle Analytics for Dummies
Google Analytics for DummiesTim Lelek
 
Google Analytics for Beginners - Training
Google Analytics for Beginners - TrainingGoogle Analytics for Beginners - Training
Google Analytics for Beginners - TrainingRuben Vezzoli
 
Getting Started with Google Analytics 4
Getting Started with Google Analytics 4Getting Started with Google Analytics 4
Getting Started with Google Analytics 4In Marketing We Trust
 
Monthly Web Analytics Report
Monthly Web Analytics ReportMonthly Web Analytics Report
Monthly Web Analytics ReportMark Kegley
 
An Introduction to Web Analytics
An Introduction to Web AnalyticsAn Introduction to Web Analytics
An Introduction to Web Analyticsiexpertsforum
 
Google Analytics 4 Trial Recommendation
Google Analytics 4 Trial RecommendationGoogle Analytics 4 Trial Recommendation
Google Analytics 4 Trial RecommendationYisrael Segall
 
Introduction to Google Analytics
Introduction to Google AnalyticsIntroduction to Google Analytics
Introduction to Google AnalyticsCecilie Burleson
 
Top 10 Google Analytics Reports
Top 10 Google Analytics ReportsTop 10 Google Analytics Reports
Top 10 Google Analytics ReportsSally Falkow
 
Introduction to Google Search Console
Introduction to Google Search ConsoleIntroduction to Google Search Console
Introduction to Google Search ConsoleRiley Haas
 
Google Analytics Training - full 2017
Google Analytics Training - full 2017Google Analytics Training - full 2017
Google Analytics Training - full 2017Nate Plaunt
 
🎙GA4 Chances & Differences Guide
🎙GA4 Chances & Differences Guide🎙GA4 Chances & Differences Guide
🎙GA4 Chances & Differences GuideŞahin Seçil
 
Build a High-Impact SEO Strategy in 2022
Build a High-Impact SEO Strategy in 2022Build a High-Impact SEO Strategy in 2022
Build a High-Impact SEO Strategy in 2022ALPSMarketing
 
2015 google analytics basics
2015 google analytics basics2015 google analytics basics
2015 google analytics basicsThe Karcher Group
 
What's new in Google Analytics 4
What's new in Google Analytics 4What's new in Google Analytics 4
What's new in Google Analytics 4Stephen Ellis
 
Measurefest - GA4 From Migration to Measurement - The Key To Success.pptx
Measurefest - GA4 From Migration to Measurement - The Key To Success.pptxMeasurefest - GA4 From Migration to Measurement - The Key To Success.pptx
Measurefest - GA4 From Migration to Measurement - The Key To Success.pptxSam Thomas
 
Google Analytics Class One
Google Analytics Class OneGoogle Analytics Class One
Google Analytics Class OneNoel Gomes
 
Introducing Google Analytics
Introducing Google AnalyticsIntroducing Google Analytics
Introducing Google AnalyticsSrikanth Dhondi
 

Was ist angesagt? (20)

Google Analytics 4: A Quick Start Guide
 Google Analytics 4: A Quick Start Guide Google Analytics 4: A Quick Start Guide
Google Analytics 4: A Quick Start Guide
 
Google Analytics for Dummies
Google Analytics for DummiesGoogle Analytics for Dummies
Google Analytics for Dummies
 
Google Analytics for Beginners - Training
Google Analytics for Beginners - TrainingGoogle Analytics for Beginners - Training
Google Analytics for Beginners - Training
 
Getting Started with Google Analytics 4
Getting Started with Google Analytics 4Getting Started with Google Analytics 4
Getting Started with Google Analytics 4
 
Monthly Web Analytics Report
Monthly Web Analytics ReportMonthly Web Analytics Report
Monthly Web Analytics Report
 
An Introduction to Web Analytics
An Introduction to Web AnalyticsAn Introduction to Web Analytics
An Introduction to Web Analytics
 
Google Analytics 4 Trial Recommendation
Google Analytics 4 Trial RecommendationGoogle Analytics 4 Trial Recommendation
Google Analytics 4 Trial Recommendation
 
Introduction to Google Analytics
Introduction to Google AnalyticsIntroduction to Google Analytics
Introduction to Google Analytics
 
Top 10 Google Analytics Reports
Top 10 Google Analytics ReportsTop 10 Google Analytics Reports
Top 10 Google Analytics Reports
 
Introduction to Google Search Console
Introduction to Google Search ConsoleIntroduction to Google Search Console
Introduction to Google Search Console
 
Google Analytics Training - full 2017
Google Analytics Training - full 2017Google Analytics Training - full 2017
Google Analytics Training - full 2017
 
🎙GA4 Chances & Differences Guide
🎙GA4 Chances & Differences Guide🎙GA4 Chances & Differences Guide
🎙GA4 Chances & Differences Guide
 
Build a High-Impact SEO Strategy in 2022
Build a High-Impact SEO Strategy in 2022Build a High-Impact SEO Strategy in 2022
Build a High-Impact SEO Strategy in 2022
 
2015 google analytics basics
2015 google analytics basics2015 google analytics basics
2015 google analytics basics
 
What's new in Google Analytics 4
What's new in Google Analytics 4What's new in Google Analytics 4
What's new in Google Analytics 4
 
Measurefest - GA4 From Migration to Measurement - The Key To Success.pptx
Measurefest - GA4 From Migration to Measurement - The Key To Success.pptxMeasurefest - GA4 From Migration to Measurement - The Key To Success.pptx
Measurefest - GA4 From Migration to Measurement - The Key To Success.pptx
 
Google analytics
Google analyticsGoogle analytics
Google analytics
 
Google Analytics Class One
Google Analytics Class OneGoogle Analytics Class One
Google Analytics Class One
 
Introducing Google Analytics
Introducing Google AnalyticsIntroducing Google Analytics
Introducing Google Analytics
 
Link building ppt
Link building pptLink building ppt
Link building ppt
 

Andere mochten auch

Google Analytics Basics
Google Analytics BasicsGoogle Analytics Basics
Google Analytics BasicsAmish Keshwani
 
Google Analytics 101 | 2015
Google Analytics 101 |  2015Google Analytics 101 |  2015
Google Analytics 101 | 2015Insivia
 
Introduction to Google Analytics - Training 2016
Introduction to Google Analytics - Training 2016Introduction to Google Analytics - Training 2016
Introduction to Google Analytics - Training 2016Gerald Claessens
 
Seo ppt - BEGINNERS COURSE - COMPLETE GUIDE - ARISE ROBY
Seo ppt - BEGINNERS COURSE - COMPLETE GUIDE - ARISE ROBYSeo ppt - BEGINNERS COURSE - COMPLETE GUIDE - ARISE ROBY
Seo ppt - BEGINNERS COURSE - COMPLETE GUIDE - ARISE ROBYArise Roby
 
Google Analytics 101 for Business - How to Get Started With Google Analytics
Google Analytics 101 for Business - How to Get Started With Google AnalyticsGoogle Analytics 101 for Business - How to Get Started With Google Analytics
Google Analytics 101 for Business - How to Get Started With Google AnalyticsJeff Sauer
 
A tutorial on Google Analytics 2017 melvinreceno the magnificent
A tutorial on Google Analytics 2017 melvinreceno the magnificentA tutorial on Google Analytics 2017 melvinreceno the magnificent
A tutorial on Google Analytics 2017 melvinreceno the magnificentMelvin Receno
 
HOW TO SET UP FACEBOOK TRACKING PIXELS
HOW TO SET UP FACEBOOK TRACKING PIXELSHOW TO SET UP FACEBOOK TRACKING PIXELS
HOW TO SET UP FACEBOOK TRACKING PIXELSJoseph Rivera
 
Google Analytics
Google AnalyticsGoogle Analytics
Google AnalyticsRohan Dighe
 
Google analytics-sample-report
Google analytics-sample-reportGoogle analytics-sample-report
Google analytics-sample-reportDetrick DeBurr
 
Introduction to the Google Display Network
Introduction to the Google Display NetworkIntroduction to the Google Display Network
Introduction to the Google Display NetworkWill Marlow Agency
 
Google Analytics Reports
Google Analytics ReportsGoogle Analytics Reports
Google Analytics ReportsReportGarden
 
Google Analytics Overview
Google Analytics OverviewGoogle Analytics Overview
Google Analytics Overviewtradocaj
 

Andere mochten auch (14)

Google Analytics Basics
Google Analytics BasicsGoogle Analytics Basics
Google Analytics Basics
 
Google Analytics 101 | 2015
Google Analytics 101 |  2015Google Analytics 101 |  2015
Google Analytics 101 | 2015
 
Introduction to Google Analytics - Training 2016
Introduction to Google Analytics - Training 2016Introduction to Google Analytics - Training 2016
Introduction to Google Analytics - Training 2016
 
Seo ppt - BEGINNERS COURSE - COMPLETE GUIDE - ARISE ROBY
Seo ppt - BEGINNERS COURSE - COMPLETE GUIDE - ARISE ROBYSeo ppt - BEGINNERS COURSE - COMPLETE GUIDE - ARISE ROBY
Seo ppt - BEGINNERS COURSE - COMPLETE GUIDE - ARISE ROBY
 
Google Analytics 101 for Business - How to Get Started With Google Analytics
Google Analytics 101 for Business - How to Get Started With Google AnalyticsGoogle Analytics 101 for Business - How to Get Started With Google Analytics
Google Analytics 101 for Business - How to Get Started With Google Analytics
 
SEO for Beginners
SEO for BeginnersSEO for Beginners
SEO for Beginners
 
A tutorial on Google Analytics 2017 melvinreceno the magnificent
A tutorial on Google Analytics 2017 melvinreceno the magnificentA tutorial on Google Analytics 2017 melvinreceno the magnificent
A tutorial on Google Analytics 2017 melvinreceno the magnificent
 
Advanced Facebook Ads
Advanced Facebook AdsAdvanced Facebook Ads
Advanced Facebook Ads
 
HOW TO SET UP FACEBOOK TRACKING PIXELS
HOW TO SET UP FACEBOOK TRACKING PIXELSHOW TO SET UP FACEBOOK TRACKING PIXELS
HOW TO SET UP FACEBOOK TRACKING PIXELS
 
Google Analytics
Google AnalyticsGoogle Analytics
Google Analytics
 
Google analytics-sample-report
Google analytics-sample-reportGoogle analytics-sample-report
Google analytics-sample-report
 
Introduction to the Google Display Network
Introduction to the Google Display NetworkIntroduction to the Google Display Network
Introduction to the Google Display Network
 
Google Analytics Reports
Google Analytics ReportsGoogle Analytics Reports
Google Analytics Reports
 
Google Analytics Overview
Google Analytics OverviewGoogle Analytics Overview
Google Analytics Overview
 

Ähnlich wie An introduction to Google Analytics

Google Analytics Website Optimizer Slideshare
Google Analytics Website Optimizer SlideshareGoogle Analytics Website Optimizer Slideshare
Google Analytics Website Optimizer Slidesharetmg_ltd
 
Google analytics and website optimizer
Google analytics and website optimizerGoogle analytics and website optimizer
Google analytics and website optimizerDigiword Ha Noi
 
Google Analytics and Website Optimizer
Google Analytics and Website OptimizerGoogle Analytics and Website Optimizer
Google Analytics and Website OptimizerSimon Whatley
 
Google Analytics And Website Optimizer
Google Analytics And Website OptimizerGoogle Analytics And Website Optimizer
Google Analytics And Website OptimizerDigiword Ha Noi
 
Google Analytics Workshop - Focus On Marketing
Google Analytics Workshop - Focus On MarketingGoogle Analytics Workshop - Focus On Marketing
Google Analytics Workshop - Focus On MarketingTom Michiels
 
Score google analytics
Score   google analyticsScore   google analytics
Score google analyticsHotTopics114
 
Web Analytics and Wordpress - Wordcamp Chicago 2011
Web Analytics and Wordpress - Wordcamp Chicago 2011Web Analytics and Wordpress - Wordcamp Chicago 2011
Web Analytics and Wordpress - Wordcamp Chicago 2011fendmark
 
Complete Ga Power User Web
Complete Ga Power User WebComplete Ga Power User Web
Complete Ga Power User WebRoman Zykov
 
Advanced SEO for Developers (Mix08)
Advanced SEO for Developers (Mix08)Advanced SEO for Developers (Mix08)
Advanced SEO for Developers (Mix08)Nathan Buggia
 
Google Analytics and Google Tag Manager for Startups
Google Analytics and Google Tag Manager for StartupsGoogle Analytics and Google Tag Manager for Startups
Google Analytics and Google Tag Manager for StartupsJoost Hoogstrate
 
Guide to-google-analytics google 4
Guide to-google-analytics google 4Guide to-google-analytics google 4
Guide to-google-analytics google 4Nizam Uddin
 
Bridging google analytics &amp; tag manager #melbseo meetup
Bridging google analytics &amp; tag manager #melbseo meetupBridging google analytics &amp; tag manager #melbseo meetup
Bridging google analytics &amp; tag manager #melbseo meetupDaniel Wild
 
Google tag manager fundamentals question and answer (june 23 and july 24, 2015)
Google tag manager fundamentals question and answer (june 23 and july 24, 2015)Google tag manager fundamentals question and answer (june 23 and july 24, 2015)
Google tag manager fundamentals question and answer (june 23 and july 24, 2015)Mahendra Patel
 
Advanced Features in Google Analytics
Advanced Features in Google AnalyticsAdvanced Features in Google Analytics
Advanced Features in Google AnalyticsDavid Corman
 
Google Analytics with an Intro to Google Tag Manager for Austin WordPress Meetup
Google Analytics with an Intro to Google Tag Manager for Austin WordPress MeetupGoogle Analytics with an Intro to Google Tag Manager for Austin WordPress Meetup
Google Analytics with an Intro to Google Tag Manager for Austin WordPress MeetupRich Plakas
 
Advanced Google Analytics
Advanced Google AnalyticsAdvanced Google Analytics
Advanced Google AnalyticsJeff Wisniewski
 
Google Analytics 101 Webinar
Google Analytics 101 WebinarGoogle Analytics 101 Webinar
Google Analytics 101 Webinarwebucatordemo
 
Understanding Web Analytics and Google Analytics
Understanding Web Analytics and Google AnalyticsUnderstanding Web Analytics and Google Analytics
Understanding Web Analytics and Google AnalyticsPrathamesh Kulkarni
 

Ähnlich wie An introduction to Google Analytics (20)

Google Analytics Website Optimizer Slideshare
Google Analytics Website Optimizer SlideshareGoogle Analytics Website Optimizer Slideshare
Google Analytics Website Optimizer Slideshare
 
Google analytics and website optimizer
Google analytics and website optimizerGoogle analytics and website optimizer
Google analytics and website optimizer
 
Google Analytics and Website Optimizer
Google Analytics and Website OptimizerGoogle Analytics and Website Optimizer
Google Analytics and Website Optimizer
 
Google Analytics And Website Optimizer
Google Analytics And Website OptimizerGoogle Analytics And Website Optimizer
Google Analytics And Website Optimizer
 
Google Analytics Workshop - Focus On Marketing
Google Analytics Workshop - Focus On MarketingGoogle Analytics Workshop - Focus On Marketing
Google Analytics Workshop - Focus On Marketing
 
Score google analytics
Score   google analyticsScore   google analytics
Score google analytics
 
Web Analytics and Wordpress - Wordcamp Chicago 2011
Web Analytics and Wordpress - Wordcamp Chicago 2011Web Analytics and Wordpress - Wordcamp Chicago 2011
Web Analytics and Wordpress - Wordcamp Chicago 2011
 
Google’s tridente
Google’s tridenteGoogle’s tridente
Google’s tridente
 
Complete Ga Power User Web
Complete Ga Power User WebComplete Ga Power User Web
Complete Ga Power User Web
 
Advanced SEO for Developers (Mix08)
Advanced SEO for Developers (Mix08)Advanced SEO for Developers (Mix08)
Advanced SEO for Developers (Mix08)
 
Google Analytics and Google Tag Manager for Startups
Google Analytics and Google Tag Manager for StartupsGoogle Analytics and Google Tag Manager for Startups
Google Analytics and Google Tag Manager for Startups
 
Developing with HTML5
Developing with HTML5Developing with HTML5
Developing with HTML5
 
Guide to-google-analytics google 4
Guide to-google-analytics google 4Guide to-google-analytics google 4
Guide to-google-analytics google 4
 
Bridging google analytics &amp; tag manager #melbseo meetup
Bridging google analytics &amp; tag manager #melbseo meetupBridging google analytics &amp; tag manager #melbseo meetup
Bridging google analytics &amp; tag manager #melbseo meetup
 
Google tag manager fundamentals question and answer (june 23 and july 24, 2015)
Google tag manager fundamentals question and answer (june 23 and july 24, 2015)Google tag manager fundamentals question and answer (june 23 and july 24, 2015)
Google tag manager fundamentals question and answer (june 23 and july 24, 2015)
 
Advanced Features in Google Analytics
Advanced Features in Google AnalyticsAdvanced Features in Google Analytics
Advanced Features in Google Analytics
 
Google Analytics with an Intro to Google Tag Manager for Austin WordPress Meetup
Google Analytics with an Intro to Google Tag Manager for Austin WordPress MeetupGoogle Analytics with an Intro to Google Tag Manager for Austin WordPress Meetup
Google Analytics with an Intro to Google Tag Manager for Austin WordPress Meetup
 
Advanced Google Analytics
Advanced Google AnalyticsAdvanced Google Analytics
Advanced Google Analytics
 
Google Analytics 101 Webinar
Google Analytics 101 WebinarGoogle Analytics 101 Webinar
Google Analytics 101 Webinar
 
Understanding Web Analytics and Google Analytics
Understanding Web Analytics and Google AnalyticsUnderstanding Web Analytics and Google Analytics
Understanding Web Analytics and Google Analytics
 

Kürzlich hochgeladen

UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPathCommunity
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024TopCSSGallery
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfIngrid Airi González
 
Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)
Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)
Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)Mark Simos
 
Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)Kaya Weers
 
QCon London: Mastering long-running processes in modern architectures
QCon London: Mastering long-running processes in modern architecturesQCon London: Mastering long-running processes in modern architectures
QCon London: Mastering long-running processes in modern architecturesBernd Ruecker
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI AgeCprime
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesThousandEyes
 
Infrared simulation and processing on Nvidia platforms
Infrared simulation and processing on Nvidia platformsInfrared simulation and processing on Nvidia platforms
Infrared simulation and processing on Nvidia platformsYoss Cohen
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Farhan Tariq
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Strongerpanagenda
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch TuesdayIvanti
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationKnoldus Inc.
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityIES VE
 
React Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App FrameworkReact Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App FrameworkPixlogix Infotech
 
All These Sophisticated Attacks, Can We Really Detect Them - PDF
All These Sophisticated Attacks, Can We Really Detect Them - PDFAll These Sophisticated Attacks, Can We Really Detect Them - PDF
All These Sophisticated Attacks, Can We Really Detect Them - PDFMichael Gough
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Alkin Tezuysal
 

Kürzlich hochgeladen (20)

UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to Hero
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdf
 
Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)
Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)
Tampa BSides - The No BS SOC (slides from April 6, 2024 talk)
 
Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)
 
QCon London: Mastering long-running processes in modern architectures
QCon London: Mastering long-running processes in modern architecturesQCon London: Mastering long-running processes in modern architectures
QCon London: Mastering long-running processes in modern architectures
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI Age
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
 
Infrared simulation and processing on Nvidia platforms
Infrared simulation and processing on Nvidia platformsInfrared simulation and processing on Nvidia platforms
Infrared simulation and processing on Nvidia platforms
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch Tuesday
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog Presentation
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a reality
 
React Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App FrameworkReact Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App Framework
 
All These Sophisticated Attacks, Can We Really Detect Them - PDF
All These Sophisticated Attacks, Can We Really Detect Them - PDFAll These Sophisticated Attacks, Can We Really Detect Them - PDF
All These Sophisticated Attacks, Can We Really Detect Them - PDF
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
 

An introduction to Google Analytics

  • 1. Google Analytics Joris Roebben ( [email_address] ) Tom Michiels ( [email_address] ) www.queromedia.com
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24. Step 4: Link to existing GA account
  • 25.
  • 26.
  • 27.
  • 28.
  • 29. GATC for different profiles <script src=&quot;http://www.google-analytics.com/urchin.js&quot; type=&quot;text/javascript&quot;> </script> <script type=&quot;text/javascript&quot;> _uacct = &quot;UA- 123456-1 &quot;; urchinTracker(); </script> <script src=&quot;http://www.google-analytics.com/urchin.js&quot; type=&quot;text/javascript&quot;> </script> <script type=&quot;text/javascript&quot;> _uacct = &quot;UA- 123456-2 &quot;; urchinTracker(); </script> <script src=&quot;http://www.google-analytics.com/urchin.js&quot; type=&quot;text/javascript&quot;> </script> <script type=&quot;text/javascript&quot;> _uacct = &quot;UA- 654321-1 &quot;; urchinTracker(); </script>
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37. 5.1 Exclude all traffic from a domain
  • 38. 5.2 Exclude all traffic from an IP address IP ranges with RegEx !!!
  • 39. 5.3 Include only traffic to a subdirectory
  • 40. 5.4 Include / Exclude filter (1)
  • 41. 5.4 Include / Exclude filter (2)
  • 42. 5.4 Include / Exclude filter (3)
  • 43. 5.5 Search and replace filter (1)
  • 44.
  • 45. 5.6 Uppercase / Lowercase filter
  • 46.
  • 47.
  • 48. Examples of advanced filters (1)
  • 49. Examples of advanced filters (2)
  • 50.
  • 52.
  • 54. RegEx Regular expressions are used to match or capture portions of a field using wildcards and metacharacters. They are often used for text manipulation tasks. Most of the filters included in Google Analytics use these expressions to match the data and perform an action when a match is achieved. For instance, an exclude filter is designed to exclude the hit if the regular expression in the filter matches the data contained in the field specified by the filter. Regular expressions are text strings that contain characters, numbers, and wildcards. Note that these wildcard characters can be used literally by escaping them with a backslash 'apos;. For example, when entering www.google.com , escape the periods with a backslash: wwwgooglecom
  • 55.
  • 56.
  • 58.
  • 61.
  • 63.
  • 64.
  • 65. E-commerce for urchin.js <form style=&quot;display:none;&quot; name=&quot;utmform&quot;> <textarea id=&quot;utmtrans&quot;> UTM:T|[order-id]|[affiliation]|[total]|[tax]|[shipping]|[city]|[state]|[country] UTM:I|[order-id]|[sku/code]|[productname]|[category]|[price]|[quantity] UTM:I|[order-id]|[sku/code]|[productname]|[category]|[price]|[quantity] </textarea> </form>
  • 66. E-commerce for GA.js <script src=&quot;http://www.google-analytics.com/ga.js&quot; type=&quot;text/javascript&quot;></script> <script type=&quot;text/javascript&quot;> var pageTracker = _gat._getTracker(&quot;UA-XXXXX-1&quot;); pageTracker._initData(); pageTracker._addTrans( &quot;1234&quot;, // Order ID &quot;partner&quot;, // Affiliation &quot;2500.25&quot;, // Total &quot;200.25&quot;, // Tax &quot;3&quot;, // Shipping &quot;Brussels&quot;, // City &quot;Brabant&quot;, // State &quot;Belgium&quot; // Country ); pageTracker._addItem( &quot;1234&quot;, // Order ID &quot;MTB25&quot;, // SKU &quot;Mountainbike&quot;, // Product Name &quot;Off-road&quot;, // Category &quot;1500&quot;, // Price &quot;1&quot; // Quantity ); pageTracker._addItem( &quot;1234&quot;, // Order ID &quot;MTB44&quot;, // SKU &quot;Mountainbike&quot;, // Product Name &quot;Cross&quot;, // Category &quot;1000.25&quot;, // Price &quot;1&quot; // Quantity ); pageTracker._trackTrans(); </script>
  • 72. 9. Tips & Tricks: Site Search
  • 73.
  • 74.
  • 75.
  • 76.
  • 77.
  • 78.
  • 79.
  • 80.
  • 82. 11. Roundup 1. Create a Google Analytics account. 2. Analyze the website. 3. Create and Configure profiles. a) Create filters. b) Create goals and funnels. c) Create recommended profiles. 4. Edit the tracking code. 5. Modify the web site. 6. Add the tracking code to web site pages. 7. Tag marketing campaigns. 8. Enable e-commerce transaction tracking. 9. Implement custom segmentation. 10. Configure other administrative features. a) User accounts and report access. b) Automated email report delivery.
  • 83. 12. Q & A