SlideShare ist ein Scribd-Unternehmen logo
1 von 100
Downloaden Sie, um offline zu lesen
Slides: goo.gl/eL1zP                    Implementing Google
                                             Analytics
                                           Vinoaj Vijeyakumaar
                                       Senior Conversion Specialist,
gplus.to/vinoaj	

                        Google Southeast Asia
twitter.com/vinoaj	

conversionroom-japac.blogspot.com	

       GTUG PH, Oct 2011
Why measure?
http://www.flickr.com/photos/screenpunk/2787210951/
The Role of the Web Analyst

        Reporting	

          Actionable Insights	





                              http://www.flickr.com/photos/kire/797533507/sizes/o/in/photostream/
What does “Action” mean?


 Discovering new opportunities	

  (eg. New markets, hot trends, customer segments)	





                                                        Optimisation	

 Improving marketing strategies	

                      Maximising reach
       (eg. New markets, optimise messaging)	

                                                        of your apps and
                                                        delighting users	



 Enhancing the user experience	

     (eg. Compelling content, optimal user flows)
Agenda

• How GA Works
• Tracking
 –  Basics
 –  Event Tracking
 –  Custom Variables
 –  Social Interaction Tracking
 –  Campaign Variables
 –  Page Load Time Tracking
• Mobile Tracking
 –  WAP
 –  Android and iOS
• Tracking Other Platforms
How GA Works
google.com.ph/analytics
GA Tracking Code (GATC)
Site & Application Reporting
Track Behaviour


                      Behaviour


 Entry                                                        Exit


                    Engagement
         Reports on 125+ standard metrics and dimensions	

                                                                     1
                                                                     0
The GA Async Tracking Code
            Look for _gaq stack
            and execute queued
            commands	

                                  HTML5:
                                  Execute script
                                  asynchronously	





     Dynamically
     load the ga.js
     tracking library	




                                                      1
                                                      1
How Google Analytics works
        1. Request--"Show me this            Website Server
               webpage"
 __utm.gif?
 utmwv=6.3&utmn=101027544&utmsr=1280x854&utm
 sc=32-bit&utmul=en&utmje=1&utmjv=1.5&utmfl=7.0
 r24&utmdt=My <html>
              <head>
              ...
                                          2. Serve page
 %20Website&utmhn=www.site.com&utmp=/
              ...


 index.html&utmac=UA-51244-4&utmcc=__utma
              User
 %3D117945243.823564440.1131054947.1131080858.1
                                        3. Request: ga.js

 133834608.4%3B+__utmb%3D117945243%3B
              </head>
              <html>
 5. Call trackPageview()
              ...
 +__utmc%3D117945243%3B+__utmz
 function
              ...        4. Serve ga.js

 %3D117945243.1131054947.3.2.utmccn%3DGoogle Servers
 6. Read & write cookies                               Secure
 %28Spring%20Sale%29%7Cutmcsr%3D%28google
 7. Send gif request.
 %29%7Cutmcmd%3D%28ppc%29% %7Cutmtm%3D
 Request contains
 %28shoes%29%3B
 data.
                                    8. Serve gif
The __utm.gif hit
 __utm.gif?
 utmwv=6.3&utmn=101027544&utmsr=1280x854&utmsc=32-
 bit&utmul=en&utmje=1&utmjv=1.5&utmfl=7.0 r24&utmdt=My
 %20Website&utmhn=www.site.com&utmp=/
 index.html&utmac=UA-51244-4&utmcc=__utma
 %3D117945243.823564440.1131054947.1131080858.1133834
 608.4%3B+__utmb%3D117945243%3B+__utmc
 %3D117945243%3B+__utmz
 %3D117945243.1131054947.3.2.utmccn%3D%28Spring
 %20Sale%29%7Cutmcsr%3D%28google%29%7Cutmcmd%3D
 %28ppc%29% %7Cutmtm%3D%28shoes%29%3B

  Screen Resolution: 1280x854      Page Title: My Website
  Screen Colors: 32-bit            Hostname: www.site.com
  Browser Language: English(en)    Filename: /index.html
  Java Enabled? Yes (1)           	

                                   Google Analytics Account: UA-51244-4
  Java Version: 1.5               	

                                   Visits: 4
  Flash Version: 7.0r24            Campaign: Spring Sale | Google(PPC) |
                                   shoes
Raw Data to Reports




                      1
                      4
GATC Basics
Understand the website structure



      Single               Multiple
     domain                domains




       Multiple
         sub-              Multiple domains
       domains             and multiple sub-
                                domain
Simplest GATC Installation

 • All content on a single domain




 <script type="text/javascript">
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-XXXXX-X']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
 </script>
GATC – Multiple Sub-Domains

• Content exists on multiple sub-domains on a single top-level domain




<script type="text/javascript">
 var _gaq = _gaq || [];
 _gaq.push(['_setAccount', 'UA-XXXXX-X']);
 _gaq.push(['_setDomainName', '.mysite.com']);
 _gaq.push(['_trackPageview']);

 (function() {
   var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
   ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
   var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
 })();
</script>
GATC – Multiple Domains

• Content exists on multiple top-level domains



                                                                     _link()




<script type="text/javascript">                          Update all links between domains to include the _link() method.
 var _gaq = _gaq || [];                                   <a href=“http://www.mysite-support.com” onclick=“_gaq.push
 _gaq.push(['_setAccount', 'UA-XXXXX-X']);                              ([‘_link’, this.href]);”>Support</a>
 _gaq.push(['_setDomainName', ’none']);
 _gaq.push(['_setAllowLinker', true]);
 _gaq.push(['_trackPageview']);

 (function() {
   var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
   ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
   var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
 })();
</script>
GATC – Multiple Domains and Sub-Domains

• Content exists on multiple sub-domains on multiple top-level domain



                                                                          _link()




                                                                             Update all links between domains to
<script type="text/javascript">                                                  include the _link() method.
 var _gaq = _gaq || [];
 _gaq.push(['_setAccount', 'UA-XXXXX-X']);                                    Do not change links between sub-
 _gaq.push(['_setDomainName', ’.mysite.com']);                                 domains on the same top-level
 _gaq.push(['_trackPageview']);                                                           domain.

 (function() {
   var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
   ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
   var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
 })();
</script>
Linking

 When content exists on multiple domains use linking methods to pass cookie
 information between domains:	

 	


 •  For HTTP GET include the _link() method.	

                                                  _link()
         •      Cookie info in URL parameters	

         •      Redirects user to the new URL	

       	

<a href=“http://www.example.com” onclick= “_gaq.push([‘_link’, this.href]);”>Example</a>	





 •  For HTTP POST include the _linkByPost() method.	

         •      Cookie info in action value	

         •      Used for forms and iFrames on other domains	

                                    SUBMIT

              	

<form action="http://www.shoppingcart.com/form.php" name="f" method="post”	

              	

 onsubmit=”_gaq.push([‘_linkByPost’, this]);">	

              	

 . . . </form>
Event Tracking
Event Tracking

•  Traditional Google Analytics is pageview based
What about the 1-page App/Site?
 • Single URL, no page refreshes
Enter Event Tracking

• Track events on your site
• Detect events and trigger tracking call




_gaq.push(['_trackEvent',            Purpose                    Example

            category,                Group of objects being     'Markers'
            action,                  tracked
                                     Type of user interaction   'Click'
            opt_label,               with the object
            opt_value]);             Additional info about      'Google
                                     the event                  Singapore'
                                     Numerical data about       1
                                     the event

                                                                             2
                                                                             5
Example: Tracking Outbound Social Media Links




                                                2
                                                6
Example: Tracking Outbound Links
YouTube Video Tracking Example




                       http://vinnysapidemos.googlecode.com/svn/trunk/
                        google/analytics/youtube/js-player-tracking.html
How did visitors interact with my videos? (Action)
Which videos were played? (Label)
Custom Variables
Custom Variables: Extended Measurement Model

                       Behaviour


  Entry                                                 Exit


                     Engagement
125+ Metrics and Dimensions+ X Custom Variables = Custom Measurement
                                                       Platform

                                                                  3
                                                                  2
Custom Variables

_setCustomVar(index, name, value, opt_scope);

•  index – position to store and transmit the variable (1 to 5)
•  name – variable name (e.g. “member-type”) (case sensitive)
•  value – variable value (e.g. “premium”) (case sensitive)
•  opt_scope – 1:visitor-level; 2:session-level; 3:page-level (default: 3)

•  Note: Length of Name + Value cannot exceed 64 characters




_setCustomVar(1, ‘foo’, ‘bar’, 2);
Visitor Level Custom Variables

               • Stays with the visitor across multiple visits
                 to the site
               • Cannot store personally identifiable
                 information


               _setCustomVar(
                 1,
                 ‘MembershipLevel’,
                 ‘Platinum’,
                 1);
Session Level Custom Variables

               • Labels a session
               • Variable is discarded once session ends


               _setCustomVar(
                 3,
                 ‘UsedChatWidget’,
                 ‘true’,
                 2);
Page Level Custom Variables

              • Useful for content grouping
              • Identify groups of pages according to
                attributes other than the page URL


              _setCustomVar(
                5,
                ‘Author’,
                ‘John Jane Doe’,
                3);
Social Interaction
Tracking
Measure use of social plugins on your website
What is social plugin tracking?

Social plugin tracking in Analytics
shows you:


•  How social plugins are used

•  Behavior of socially engaged users

•  Comparative performance of different social plugins

•  What content is socially engaging
Setup for +1 button

Setup for the       button: None


The +1 button on your website is already tracked.
Setup for other networks


• Other social buttons require a small javascript change to
  your website.



When a social plugin is used call this method:
     _trackSocial(network, action, target_url);
Copy & paste Twitter & Facebook code




 http://code.google.com/apis/analytics/docs/tracking/gaTrackingSocial.html
Tracking Social Interactions
MilkADeal.com




                      Google Confidential and Proprietary
<!– Email share button: -->
<a onclick="showMailer(&#039;Check out MilkADeal for huge
discounts in Malaysia! Here is my referral link: http://
milkadeal.com/r/&#039;);return false;" href="#"><div id="lnkMail"></
div></a>


<!– Functions to track email share button usage: -->
<script>
 function showMailer(myBody){
     _gaTrack();
     $(".winMessage").html(myBody);
     $("#mailer").modal();
 }

 function _gaTrack() {
     _gaq.push(['_trackSocial', 'email', 'share']);
 }
</script>
What value do socially-engaged visitors hold for us?




                      Google Confidential and Proprietary
Overview of Socially-Engaged Traffic




                     Google Confidential and Proprietary
Where are the conversions?




                    Google Confidential and Proprietary
Encourage more email sharing




                    Google Confidential and Proprietary
Campaign Variables
360 Degree Tracking




                      5
                      0
URL Campaign Variables


        http://www.yoursite.com/landingpage.html?
        utm_source=yahoo&utm_medium=cpc&utm_campaign=Ja
        n+2011+Campaign&utm_term=my+keyword



        http://www.yoursite.com/landingpage.html?
        utm_source=twitter&utm_medium=tweet&utm_campaign=J
        an+03+One+Day+Sale



        http://www.yoursite.com/landingpage.html?
        utm_source=email&utm_medium=link&utm_campaign=Jan
        +2011+Newsletter



                                                             5
                                                             1
Campaign Variable Basics


             Required Tags

             The Source is where the visitor was sent from.
                     Examples: google, nytimes.com, facebook.com




             The Medium is the channel in which this URL is promoted.
                     Examples: cpc, display, social, organic




             The Campaign should either indicate the overarching name for the
             marketing effort or just the specific ad campaign in which the ad
             lives.



             Optional Tags
             The Keyword is the search term that you bid on (search engines
             only)

             The Ad Content should indicate the ad name, copy, or other
             helpful information to identify the type of ad that was clicked.
Android Referral Tracking


         http://market.android.com/details?id=com.myorg.myapp&referrer=utm_source
         %3Dgoogle%26utm_medium%3Dcpc%26utm_term%3D
         %257Bkeyword%257D%26utm_content%3DAd%2520A
         %26utm_campaign%3DApp%2520Download 	





         http://yoursite.com/yourapp.apk&referrer=utm_source%3Dgoogle
         %26utm_medium%3Dcpc%26utm_term%3D%257Bkeyword%257D
         %26utm_content%3DAd%2520A%26utm_campaign%3DApp
         %2520Download 	





                                                                                5
                                                                                3
Example … Social Media

        http://www.yoursite.com/landingpage.html?
        utm_source=twitter&
        utm_medium=socialmedia&
        utm_campaign=My+social+campaign
Page Load Times
The Impact of Speed
Tracking setup

<script type="text/javascript">var _gaq = _gaq || [];_gaq.push(['_setAccount', 'UA-XXXXX-
X']);_gaq.push(['_trackPageview']);(function() {var ga = document.createElement('script');
ga.type = 'text/javascript'; ga.async = true;ga.src = ('https:' ==
document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';var
s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);})();</
script>
Tracking setup

<script type="text/javascript">var _gaq = _gaq || [];_gaq.push(['_setAccount', 'UA-
XXXXXX']);_gaq.push(['_trackPageview']);_gaq.push(['_trackPageLoadTime']);
(function() {var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async
= true;ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') +
'.google-analytics.com/ga.js';var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);})();</script>
Tracking setup




                 Hit
Tracking setup




                 Time: 1.47 sec
Amari.com
Understanding Page Latency
Page Speed Online




                    pagespeed.googlelabs.com
Page Speed Recommendations
Before & After

     Amari Package Selection         Original
             Page                       Page
        Page Speed Score             62 / 100
       First View Load Time           8.739s

     Optimizations include:
      •  Removed whitespace in HTML
      •  Using minified versions of JS libraries
      •  Using minified CSS
      •  Serving optimised images
      •  Testing serving GZIPped (compressed) content
Before & After

     Amari Package Selection         Original Optimized           %
             Page                       Page      Page        Change
        Page Speed Score             62 / 100      67 / 100      5%
       First View Load Time           8.739s       7.738s     11.5%
     Optimizations include:
      •  Removed whitespace in HTML
      •  Using minified versions of JS libraries
      •  Using minified CSS
      •  Serving optimised images
      •  Testing serving GZIPped (compressed) content
Mobile Tracking
Mobile Tracking
         HTML &
                                                           WAP	

        Applications	





                      iPhone	





                                                                Windows 	

                                                                 Mobile	

                                                                              Blackberry	

                                  Android	





                                                                                Pearl &
                                                                                 Curve	

         http://code.google.com/apis/analytics/docs/tracking/mobileAppsTracking.html 	

                                                                                              6
                                                                                              8
Track Activity to Mobile Websites [link]




                Mobile Websites
                ü Server-side tracking
                ü Track all web-enabled devices (not just JS & cookie capable)
                ü Four languages supported: PHP, Perl, JSP, ASP
                ü Works just like Analytics on desktop web pages
Copy & Paste Snippets




                        7
                        0
A Quick Look at the PHP Code Snippet


                                            Insert a pixel for tracking
 Page rendering script

                         Generate the pixel URL


                                                   Send the request to GA




                         ga.php
                                                                          7
                                                                          1
Server-to-Server Communications




                                                            Secure Google Servers
                         Website Server
        Request pixel:                    Send request to
        /ga.php?....                      GA servers




                                                                                7
                                                                                2
Google Analytics Mobile SDK


                   Native App Tracking	

                   Unique Users	


                   Pageviews	


                   Events	


                   Ecommerce	


                   Custom Variables	


                   Android Market Referrals
Setting Up A Tracker Object In An Activity

	
GoogleAnalyticsTracker tracker;	
	
onCreate	
      tracker = GoogleAnalyticsTracker.getInstance();	
      tracker.startNewSession("UA-xxx-y", this);	
	




    74
Dispatching Events

Tracked data is queued and dispatched in bundles
• Saves battery life
• Can track when users are offline



tracker.dispatch();	
- or -	
tracker.start("UA-xxx-y", 20, this);	




  75
Tracking User Preferences

• How does user behavior differ by orientation?
Custom Variables




 Page	

 tracker.setCustomVar(1, “orientation”, “portrait”, 3); 	

 tracker.setCustomVar(1, “orientation”, “landscape”, 3);
Reporting on User Preferences
Reporting on User Preferences
Reporting on User Preferences
Reporting on User Preferences
Reporting on User Preferences
Tracking In-App Purchases

• How much revenue does my application generate?
• Which products are most popular?
Reporting In App Purchases
Other Platforms
Tracking on Other Platforms




                              8
                              6
Chrome Extensions

•  Load GA within Chrome extension page



 Call _trackPageView to measure
 extension activation


 Call _trackEvent to track
 interactions
Flash / Flex
               Track
                Pageviews
               Track Events
Silverlight




              8
              9
Resources
Subscribe for the Latest News


                                    Subscribe to receive latest
                                    articles in your inbox




conversionroom-japac.blogspot.com
code.google.com/apis/analytics
Starter Guides

•  Handy Google Analytics Resources:
   http://cse-sea.blogspot.com/2009/01/handy-google-
   analytics-resources.html
•  Getting Started is Easy:
   http://cse-sea.blogspot.com/2009/03/google-analytics-
   getting-started-is.html




                                                           9
                                                           3
ConversionUniversity.com




                           Your Name Here
Google Analytics Individual Qualification




                     Your Name Here
Parties Can Verify Your Qualification Online
Google Analytics Certified Partners
Recap
•  Data is Gold
•  Tag & Track
  •  GA Tracking Code
  •  Event Tracking
  •  Custom Variables
  •  Social Interaction Tracking
  •  Campaign Variables
  •  Page Load Time Tracking

•  Take Action!!
Thank You!   	

             	

             	

   @vinoaj; gplus.to/vinoaj

Weitere ähnliche Inhalte

Was ist angesagt?

Plan a Digital Analytics Training Strategy for an Analytics Agency
Plan a Digital Analytics Training Strategy for an Analytics AgencyPlan a Digital Analytics Training Strategy for an Analytics Agency
Plan a Digital Analytics Training Strategy for an Analytics AgencyPhil Pearce
 
Blackhat Analyics 4: May the 25th be with you!
Blackhat Analyics 4:  May the 25th be with you!Blackhat Analyics 4:  May the 25th be with you!
Blackhat Analyics 4: May the 25th be with you!Phil Pearce
 
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
 
Most Advanced GTM Deployment. Ever!
Most Advanced GTM Deployment. Ever!Most Advanced GTM Deployment. Ever!
Most Advanced GTM Deployment. Ever!Phil Pearce
 
29 Advanced Google Tag Manager Tips Every Marketer Should Know
29 Advanced Google Tag Manager Tips Every Marketer Should Know29 Advanced Google Tag Manager Tips Every Marketer Should Know
29 Advanced Google Tag Manager Tips Every Marketer Should KnowMike Arnesen
 
How can a data layer help my seo
How can a data layer help my seoHow can a data layer help my seo
How can a data layer help my seoPhil Pearce
 
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
 
Track Report & Optimize Your Web Creations
Track Report & Optimize Your Web CreationsTrack Report & Optimize Your Web Creations
Track Report & Optimize Your Web CreationsEmpirical Path
 
Google Analytics 4 Trial Recommendation
Google Analytics 4 Trial RecommendationGoogle Analytics 4 Trial Recommendation
Google Analytics 4 Trial RecommendationYisrael Segall
 
Blackhat Analytics 3 @ superweek - Do be evil: Force awakens
Blackhat Analytics 3 @  superweek - Do be evil: Force awakensBlackhat Analytics 3 @  superweek - Do be evil: Force awakens
Blackhat Analytics 3 @ superweek - Do be evil: Force awakensPhil Pearce
 
Web analytics masterclass Howest
Web analytics masterclass HowestWeb analytics masterclass Howest
Web analytics masterclass HowestEvelien De Mey
 
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
 
Digital analytics upskilling & career tips
Digital analytics upskilling & career tipsDigital analytics upskilling & career tips
Digital analytics upskilling & career tipsPhil Pearce
 
Guide to-google-analytics google 4
Guide to-google-analytics google 4Guide to-google-analytics google 4
Guide to-google-analytics google 4Nizam Uddin
 
Google Tag Manager for actionable metrics - Beyond basic Google Analytics
Google Tag Manager for actionable metrics - Beyond basic Google AnalyticsGoogle Tag Manager for actionable metrics - Beyond basic Google Analytics
Google Tag Manager for actionable metrics - Beyond basic Google AnalyticsDesignHammer
 
Google Data Studio - First impressions @ Measurecamp
Google Data Studio - First impressions @ MeasurecampGoogle Data Studio - First impressions @ Measurecamp
Google Data Studio - First impressions @ MeasurecampPhil Pearce
 
Google analytics version 4 in details
Google analytics version 4 in detailsGoogle analytics version 4 in details
Google analytics version 4 in detailsOmkar Nandi
 
Web Analytic for gaming
Web Analytic for gamingWeb Analytic for gaming
Web Analytic for gamingEider E Iñaki
 

Was ist angesagt? (18)

Plan a Digital Analytics Training Strategy for an Analytics Agency
Plan a Digital Analytics Training Strategy for an Analytics AgencyPlan a Digital Analytics Training Strategy for an Analytics Agency
Plan a Digital Analytics Training Strategy for an Analytics Agency
 
Blackhat Analyics 4: May the 25th be with you!
Blackhat Analyics 4:  May the 25th be with you!Blackhat Analyics 4:  May the 25th be with you!
Blackhat Analyics 4: May the 25th be with you!
 
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)
 
Most Advanced GTM Deployment. Ever!
Most Advanced GTM Deployment. Ever!Most Advanced GTM Deployment. Ever!
Most Advanced GTM Deployment. Ever!
 
29 Advanced Google Tag Manager Tips Every Marketer Should Know
29 Advanced Google Tag Manager Tips Every Marketer Should Know29 Advanced Google Tag Manager Tips Every Marketer Should Know
29 Advanced Google Tag Manager Tips Every Marketer Should Know
 
How can a data layer help my seo
How can a data layer help my seoHow can a data layer help my seo
How can a data layer help my seo
 
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
 
Track Report & Optimize Your Web Creations
Track Report & Optimize Your Web CreationsTrack Report & Optimize Your Web Creations
Track Report & Optimize Your Web Creations
 
Google Analytics 4 Trial Recommendation
Google Analytics 4 Trial RecommendationGoogle Analytics 4 Trial Recommendation
Google Analytics 4 Trial Recommendation
 
Blackhat Analytics 3 @ superweek - Do be evil: Force awakens
Blackhat Analytics 3 @  superweek - Do be evil: Force awakensBlackhat Analytics 3 @  superweek - Do be evil: Force awakens
Blackhat Analytics 3 @ superweek - Do be evil: Force awakens
 
Web analytics masterclass Howest
Web analytics masterclass HowestWeb analytics masterclass Howest
Web analytics masterclass Howest
 
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
 
Digital analytics upskilling & career tips
Digital analytics upskilling & career tipsDigital analytics upskilling & career tips
Digital analytics upskilling & career tips
 
Guide to-google-analytics google 4
Guide to-google-analytics google 4Guide to-google-analytics google 4
Guide to-google-analytics google 4
 
Google Tag Manager for actionable metrics - Beyond basic Google Analytics
Google Tag Manager for actionable metrics - Beyond basic Google AnalyticsGoogle Tag Manager for actionable metrics - Beyond basic Google Analytics
Google Tag Manager for actionable metrics - Beyond basic Google Analytics
 
Google Data Studio - First impressions @ Measurecamp
Google Data Studio - First impressions @ MeasurecampGoogle Data Studio - First impressions @ Measurecamp
Google Data Studio - First impressions @ Measurecamp
 
Google analytics version 4 in details
Google analytics version 4 in detailsGoogle analytics version 4 in details
Google analytics version 4 in details
 
Web Analytic for gaming
Web Analytic for gamingWeb Analytic for gaming
Web Analytic for gaming
 

Andere mochten auch

05 GoMeasure (sg and kl) - measuring the mobile visitor - nash islam - google
05   GoMeasure (sg and kl) - measuring the mobile visitor - nash islam - google05   GoMeasure (sg and kl) - measuring the mobile visitor - nash islam - google
05 GoMeasure (sg and kl) - measuring the mobile visitor - nash islam - googleVinoaj Vijeyakumaar
 
Mobile Landscape Challenges
Mobile Landscape ChallengesMobile Landscape Challenges
Mobile Landscape ChallengesiMediaIndia
 
09 GoMeasure (sg and kl) - landing pages that work - vijay ayyar - google (...
09   GoMeasure (sg and kl) - landing pages that work - vijay ayyar - google (...09   GoMeasure (sg and kl) - landing pages that work - vijay ayyar - google (...
09 GoMeasure (sg and kl) - landing pages that work - vijay ayyar - google (...Vinoaj Vijeyakumaar
 
TEDx Johnson & Johnson - Building Great User Experience with Data - 2012-03-27
TEDx Johnson & Johnson - Building Great User Experience with Data - 2012-03-27TEDx Johnson & Johnson - Building Great User Experience with Data - 2012-03-27
TEDx Johnson & Johnson - Building Great User Experience with Data - 2012-03-27Vinoaj Vijeyakumaar
 
NTU MBA - Data-Driven Insights - 2011-10-14.ppt
NTU MBA - Data-Driven Insights - 2011-10-14.pptNTU MBA - Data-Driven Insights - 2011-10-14.ppt
NTU MBA - Data-Driven Insights - 2011-10-14.pptVinoaj Vijeyakumaar
 
5 steps to measurement success - gThailand - 2012-10-25
5 steps to measurement success - gThailand - 2012-10-255 steps to measurement success - gThailand - 2012-10-25
5 steps to measurement success - gThailand - 2012-10-25Vinoaj Vijeyakumaar
 

Andere mochten auch (6)

05 GoMeasure (sg and kl) - measuring the mobile visitor - nash islam - google
05   GoMeasure (sg and kl) - measuring the mobile visitor - nash islam - google05   GoMeasure (sg and kl) - measuring the mobile visitor - nash islam - google
05 GoMeasure (sg and kl) - measuring the mobile visitor - nash islam - google
 
Mobile Landscape Challenges
Mobile Landscape ChallengesMobile Landscape Challenges
Mobile Landscape Challenges
 
09 GoMeasure (sg and kl) - landing pages that work - vijay ayyar - google (...
09   GoMeasure (sg and kl) - landing pages that work - vijay ayyar - google (...09   GoMeasure (sg and kl) - landing pages that work - vijay ayyar - google (...
09 GoMeasure (sg and kl) - landing pages that work - vijay ayyar - google (...
 
TEDx Johnson & Johnson - Building Great User Experience with Data - 2012-03-27
TEDx Johnson & Johnson - Building Great User Experience with Data - 2012-03-27TEDx Johnson & Johnson - Building Great User Experience with Data - 2012-03-27
TEDx Johnson & Johnson - Building Great User Experience with Data - 2012-03-27
 
NTU MBA - Data-Driven Insights - 2011-10-14.ppt
NTU MBA - Data-Driven Insights - 2011-10-14.pptNTU MBA - Data-Driven Insights - 2011-10-14.ppt
NTU MBA - Data-Driven Insights - 2011-10-14.ppt
 
5 steps to measurement success - gThailand - 2012-10-25
5 steps to measurement success - gThailand - 2012-10-255 steps to measurement success - gThailand - 2012-10-25
5 steps to measurement success - gThailand - 2012-10-25
 

Ähnlich wie GTUG Philippines - Implementing Google Analytics - 2011-10-11

DevFest Chiang Mai - Implementing Google Analytics - 2011-09-24.ppt
DevFest Chiang Mai - Implementing Google Analytics - 2011-09-24.pptDevFest Chiang Mai - Implementing Google Analytics - 2011-09-24.ppt
DevFest Chiang Mai - Implementing Google Analytics - 2011-09-24.pptVinoaj Vijeyakumaar
 
implemetning google analytics - 2011-09-24 Google Devfest Chiangmai
implemetning google analytics - 2011-09-24 Google Devfest Chiangmaiimplemetning google analytics - 2011-09-24 Google Devfest Chiangmai
implemetning google analytics - 2011-09-24 Google Devfest ChiangmaiPawoot (Pom) Pongvitayapanu
 
Google Analytics intro - Best practices for WCM
Google Analytics intro - Best practices for WCMGoogle Analytics intro - Best practices for WCM
Google Analytics intro - Best practices for WCMAmplexor
 
5 Ways to Make Use of Your Google Analytics
5 Ways to Make Use of Your Google Analytics5 Ways to Make Use of Your Google Analytics
5 Ways to Make Use of Your Google AnalyticsCharlie Morris
 
Google Analytics for Developers
Google Analytics for DevelopersGoogle Analytics for Developers
Google Analytics for DevelopersRubén Martínez
 
Google Analytics for Developers
Google Analytics for DevelopersGoogle Analytics for Developers
Google Analytics for DevelopersParadigma Digital
 
Google Analytics for Beginners - Training
Google Analytics for Beginners - TrainingGoogle Analytics for Beginners - Training
Google Analytics for Beginners - TrainingRuben Vezzoli
 
Gat Cmigrationguide
Gat CmigrationguideGat Cmigrationguide
Gat CmigrationguidePeter John
 
How to use pertinently Google Analytics, by Gilles Barbier
How to use pertinently Google Analytics, by Gilles BarbierHow to use pertinently Google Analytics, by Gilles Barbier
How to use pertinently Google Analytics, by Gilles BarbierTheFamily
 
AnDevCon - Tracking User Behavior Creatively
AnDevCon - Tracking User Behavior CreativelyAnDevCon - Tracking User Behavior Creatively
AnDevCon - Tracking User Behavior CreativelyKiana Tennyson
 
Designerfair 2011
Designerfair 2011Designerfair 2011
Designerfair 2011douglee650
 
Integrating Google Analytics in Android apps
Integrating Google Analytics in Android appsIntegrating Google Analytics in Android apps
Integrating Google Analytics in Android appsFranklin van Velthuizen
 
Intro to Google Analytics and Google AdWords (March 19 2013)
Intro to Google Analytics and Google AdWords (March 19 2013)Intro to Google Analytics and Google AdWords (March 19 2013)
Intro to Google Analytics and Google AdWords (March 19 2013)Chester County Marketing Group
 
Google Cloud Platform 2014Q1 - Starter Guide
Google Cloud Platform   2014Q1 - Starter GuideGoogle Cloud Platform   2014Q1 - Starter Guide
Google Cloud Platform 2014Q1 - Starter GuideSimon Su
 
Expert Tips and Techniques for Using Google Tag Manager
Expert Tips and Techniques  for Using Google Tag ManagerExpert Tips and Techniques  for Using Google Tag Manager
Expert Tips and Techniques for Using Google Tag ManagerOWOX BI
 
Enhancing Google Analytics: High-Impact Practices for Your Library
Enhancing Google Analytics: High-Impact Practices for Your LibraryEnhancing Google Analytics: High-Impact Practices for Your Library
Enhancing Google Analytics: High-Impact Practices for Your LibraryTabby Farney
 
Gtug sg google analytics - 2010-06-05
Gtug sg   google analytics - 2010-06-05Gtug sg   google analytics - 2010-06-05
Gtug sg google analytics - 2010-06-05Vinoaj Vijeyakumaar
 

Ähnlich wie GTUG Philippines - Implementing Google Analytics - 2011-10-11 (20)

DevFest Chiang Mai - Implementing Google Analytics - 2011-09-24.ppt
DevFest Chiang Mai - Implementing Google Analytics - 2011-09-24.pptDevFest Chiang Mai - Implementing Google Analytics - 2011-09-24.ppt
DevFest Chiang Mai - Implementing Google Analytics - 2011-09-24.ppt
 
implemetning google analytics - 2011-09-24 Google Devfest Chiangmai
implemetning google analytics - 2011-09-24 Google Devfest Chiangmaiimplemetning google analytics - 2011-09-24 Google Devfest Chiangmai
implemetning google analytics - 2011-09-24 Google Devfest Chiangmai
 
Google Analytics intro - Best practices for WCM
Google Analytics intro - Best practices for WCMGoogle Analytics intro - Best practices for WCM
Google Analytics intro - Best practices for WCM
 
5 Ways to Make Use of Your Google Analytics
5 Ways to Make Use of Your Google Analytics5 Ways to Make Use of Your Google Analytics
5 Ways to Make Use of Your Google Analytics
 
Google’s tridente
Google’s tridenteGoogle’s tridente
Google’s tridente
 
Google Analytics for Developers
Google Analytics for DevelopersGoogle Analytics for Developers
Google Analytics for Developers
 
Google Analytics for Developers
Google Analytics for DevelopersGoogle Analytics for Developers
Google Analytics for Developers
 
Google Analytics for Beginners - Training
Google Analytics for Beginners - TrainingGoogle Analytics for Beginners - Training
Google Analytics for Beginners - Training
 
Gat Cmigrationguide
Gat CmigrationguideGat Cmigrationguide
Gat Cmigrationguide
 
Cómo usar google analytics
Cómo usar google analyticsCómo usar google analytics
Cómo usar google analytics
 
How to use pertinently Google Analytics, by Gilles Barbier
How to use pertinently Google Analytics, by Gilles BarbierHow to use pertinently Google Analytics, by Gilles Barbier
How to use pertinently Google Analytics, by Gilles Barbier
 
AnDevCon - Tracking User Behavior Creatively
AnDevCon - Tracking User Behavior CreativelyAnDevCon - Tracking User Behavior Creatively
AnDevCon - Tracking User Behavior Creatively
 
Designerfair 2011
Designerfair 2011Designerfair 2011
Designerfair 2011
 
Integrating Google Analytics in Android apps
Integrating Google Analytics in Android appsIntegrating Google Analytics in Android apps
Integrating Google Analytics in Android apps
 
Intro to Google Analytics and Google AdWords (March 19 2013)
Intro to Google Analytics and Google AdWords (March 19 2013)Intro to Google Analytics and Google AdWords (March 19 2013)
Intro to Google Analytics and Google AdWords (March 19 2013)
 
Introduction to AngularJS
Introduction to AngularJSIntroduction to AngularJS
Introduction to AngularJS
 
Google Cloud Platform 2014Q1 - Starter Guide
Google Cloud Platform   2014Q1 - Starter GuideGoogle Cloud Platform   2014Q1 - Starter Guide
Google Cloud Platform 2014Q1 - Starter Guide
 
Expert Tips and Techniques for Using Google Tag Manager
Expert Tips and Techniques  for Using Google Tag ManagerExpert Tips and Techniques  for Using Google Tag Manager
Expert Tips and Techniques for Using Google Tag Manager
 
Enhancing Google Analytics: High-Impact Practices for Your Library
Enhancing Google Analytics: High-Impact Practices for Your LibraryEnhancing Google Analytics: High-Impact Practices for Your Library
Enhancing Google Analytics: High-Impact Practices for Your Library
 
Gtug sg google analytics - 2010-06-05
Gtug sg   google analytics - 2010-06-05Gtug sg   google analytics - 2010-06-05
Gtug sg google analytics - 2010-06-05
 

Mehr von Vinoaj Vijeyakumaar

You are Not So Smart: The Data Analyst's Guide
You are Not So Smart: The Data Analyst's GuideYou are Not So Smart: The Data Analyst's Guide
You are Not So Smart: The Data Analyst's GuideVinoaj Vijeyakumaar
 
2014 10-10 ThinkPerformance Hong Kong - sparkline - Vinoaj Vijeyakumaar
2014 10-10 ThinkPerformance Hong Kong - sparkline - Vinoaj Vijeyakumaar2014 10-10 ThinkPerformance Hong Kong - sparkline - Vinoaj Vijeyakumaar
2014 10-10 ThinkPerformance Hong Kong - sparkline - Vinoaj VijeyakumaarVinoaj Vijeyakumaar
 
2014 09-10-12 Building Customer Profiles - Move from clicks to faces
2014 09-10-12 Building Customer Profiles - Move from clicks to faces2014 09-10-12 Building Customer Profiles - Move from clicks to faces
2014 09-10-12 Building Customer Profiles - Move from clicks to facesVinoaj Vijeyakumaar
 
Multi touch attribution & attribution modeling - GAUC Sydney Melbourne - 2013...
Multi touch attribution & attribution modeling - GAUC Sydney Melbourne - 2013...Multi touch attribution & attribution modeling - GAUC Sydney Melbourne - 2013...
Multi touch attribution & attribution modeling - GAUC Sydney Melbourne - 2013...Vinoaj Vijeyakumaar
 
Overcoming the Seduction of Data - AlphaTerra Digital Marketing Conference - ...
Overcoming the Seduction of Data - AlphaTerra Digital Marketing Conference - ...Overcoming the Seduction of Data - AlphaTerra Digital Marketing Conference - ...
Overcoming the Seduction of Data - AlphaTerra Digital Marketing Conference - ...Vinoaj Vijeyakumaar
 
Measuring your way towards a successful application - 2012-10-04 - Google Dev...
Measuring your way towards a successful application - 2012-10-04 - Google Dev...Measuring your way towards a successful application - 2012-10-04 - Google Dev...
Measuring your way towards a successful application - 2012-10-04 - Google Dev...Vinoaj Vijeyakumaar
 
Navigating Uncertainty through Data
Navigating Uncertainty through DataNavigating Uncertainty through Data
Navigating Uncertainty through DataVinoaj Vijeyakumaar
 
WAN-IFRA Digital Media Asia 2011 - Owning Great Content: A Data-Driven Approa...
WAN-IFRA Digital Media Asia 2011 - Owning Great Content: A Data-Driven Approa...WAN-IFRA Digital Media Asia 2011 - Owning Great Content: A Data-Driven Approa...
WAN-IFRA Digital Media Asia 2011 - Owning Great Content: A Data-Driven Approa...Vinoaj Vijeyakumaar
 
Owning a Great Blog: A Data-Driven Approach - Kopdar 1000 Blogger Nusantara (...
Owning a Great Blog: A Data-Driven Approach - Kopdar 1000 Blogger Nusantara (...Owning a Great Blog: A Data-Driven Approach - Kopdar 1000 Blogger Nusantara (...
Owning a Great Blog: A Data-Driven Approach - Kopdar 1000 Blogger Nusantara (...Vinoaj Vijeyakumaar
 
Breakout GoMeasure (sg and kl) - google analytics 101 - clicktrue.ppt
Breakout   GoMeasure (sg and kl) - google analytics 101 - clicktrue.pptBreakout   GoMeasure (sg and kl) - google analytics 101 - clicktrue.ppt
Breakout GoMeasure (sg and kl) - google analytics 101 - clicktrue.pptVinoaj Vijeyakumaar
 
12 GoMeasure (sg and kl) - page speed light speed path to conversions - joh...
12   GoMeasure (sg and kl) - page speed light speed path to conversions - joh...12   GoMeasure (sg and kl) - page speed light speed path to conversions - joh...
12 GoMeasure (sg and kl) - page speed light speed path to conversions - joh...Vinoaj Vijeyakumaar
 
11 GoMeasure (sg and kl) - mobile landing page and site usability tips - ma...
11   GoMeasure (sg and kl) - mobile landing page and site usability tips - ma...11   GoMeasure (sg and kl) - mobile landing page and site usability tips - ma...
11 GoMeasure (sg and kl) - mobile landing page and site usability tips - ma...Vinoaj Vijeyakumaar
 
10 GoMeasure (sg and kl) - designing for conversions - jereme wong - clicktrue
10   GoMeasure (sg and kl) - designing for conversions - jereme wong - clicktrue10   GoMeasure (sg and kl) - designing for conversions - jereme wong - clicktrue
10 GoMeasure (sg and kl) - designing for conversions - jereme wong - clicktrueVinoaj Vijeyakumaar
 
08 GoMeasure (sg and kl) - optimising for the post click experience - timo ...
08   GoMeasure (sg and kl) - optimising for the post click experience - timo ...08   GoMeasure (sg and kl) - optimising for the post click experience - timo ...
08 GoMeasure (sg and kl) - optimising for the post click experience - timo ...Vinoaj Vijeyakumaar
 
07 GoMeasure (sg and kl) - measuring trends - nagalakshmi v - google
07   GoMeasure (sg and kl) - measuring trends - nagalakshmi v - google07   GoMeasure (sg and kl) - measuring trends - nagalakshmi v - google
07 GoMeasure (sg and kl) - measuring trends - nagalakshmi v - googleVinoaj Vijeyakumaar
 
06 GoMeasure (sg and kl) - measuring social - john jersin - google
06   GoMeasure (sg and kl) - measuring social - john jersin - google06   GoMeasure (sg and kl) - measuring social - john jersin - google
06 GoMeasure (sg and kl) - measuring social - john jersin - googleVinoaj Vijeyakumaar
 
04 GoMeasure (sg and kl) - defining and completing goals - timo josten - go...
04   GoMeasure (sg and kl) - defining and completing goals - timo josten - go...04   GoMeasure (sg and kl) - defining and completing goals - timo josten - go...
04 GoMeasure (sg and kl) - defining and completing goals - timo josten - go...Vinoaj Vijeyakumaar
 
02 GoMeasure (sg and kl) - keynote - john jersin - google.ppt
02   GoMeasure (sg and kl) - keynote - john jersin - google.ppt02   GoMeasure (sg and kl) - keynote - john jersin - google.ppt
02 GoMeasure (sg and kl) - keynote - john jersin - google.pptVinoaj Vijeyakumaar
 
14 GoMeasure (sg and kl) - 12 for 2012 - vinoaj vijeyakumaar - google
14   GoMeasure (sg and kl) - 12 for 2012 - vinoaj vijeyakumaar - google14   GoMeasure (sg and kl) - 12 for 2012 - vinoaj vijeyakumaar - google
14 GoMeasure (sg and kl) - 12 for 2012 - vinoaj vijeyakumaar - googleVinoaj Vijeyakumaar
 
Google Analytics for Developers: GTUG KL Edition
Google Analytics for Developers: GTUG KL EditionGoogle Analytics for Developers: GTUG KL Edition
Google Analytics for Developers: GTUG KL EditionVinoaj Vijeyakumaar
 

Mehr von Vinoaj Vijeyakumaar (20)

You are Not So Smart: The Data Analyst's Guide
You are Not So Smart: The Data Analyst's GuideYou are Not So Smart: The Data Analyst's Guide
You are Not So Smart: The Data Analyst's Guide
 
2014 10-10 ThinkPerformance Hong Kong - sparkline - Vinoaj Vijeyakumaar
2014 10-10 ThinkPerformance Hong Kong - sparkline - Vinoaj Vijeyakumaar2014 10-10 ThinkPerformance Hong Kong - sparkline - Vinoaj Vijeyakumaar
2014 10-10 ThinkPerformance Hong Kong - sparkline - Vinoaj Vijeyakumaar
 
2014 09-10-12 Building Customer Profiles - Move from clicks to faces
2014 09-10-12 Building Customer Profiles - Move from clicks to faces2014 09-10-12 Building Customer Profiles - Move from clicks to faces
2014 09-10-12 Building Customer Profiles - Move from clicks to faces
 
Multi touch attribution & attribution modeling - GAUC Sydney Melbourne - 2013...
Multi touch attribution & attribution modeling - GAUC Sydney Melbourne - 2013...Multi touch attribution & attribution modeling - GAUC Sydney Melbourne - 2013...
Multi touch attribution & attribution modeling - GAUC Sydney Melbourne - 2013...
 
Overcoming the Seduction of Data - AlphaTerra Digital Marketing Conference - ...
Overcoming the Seduction of Data - AlphaTerra Digital Marketing Conference - ...Overcoming the Seduction of Data - AlphaTerra Digital Marketing Conference - ...
Overcoming the Seduction of Data - AlphaTerra Digital Marketing Conference - ...
 
Measuring your way towards a successful application - 2012-10-04 - Google Dev...
Measuring your way towards a successful application - 2012-10-04 - Google Dev...Measuring your way towards a successful application - 2012-10-04 - Google Dev...
Measuring your way towards a successful application - 2012-10-04 - Google Dev...
 
Navigating Uncertainty through Data
Navigating Uncertainty through DataNavigating Uncertainty through Data
Navigating Uncertainty through Data
 
WAN-IFRA Digital Media Asia 2011 - Owning Great Content: A Data-Driven Approa...
WAN-IFRA Digital Media Asia 2011 - Owning Great Content: A Data-Driven Approa...WAN-IFRA Digital Media Asia 2011 - Owning Great Content: A Data-Driven Approa...
WAN-IFRA Digital Media Asia 2011 - Owning Great Content: A Data-Driven Approa...
 
Owning a Great Blog: A Data-Driven Approach - Kopdar 1000 Blogger Nusantara (...
Owning a Great Blog: A Data-Driven Approach - Kopdar 1000 Blogger Nusantara (...Owning a Great Blog: A Data-Driven Approach - Kopdar 1000 Blogger Nusantara (...
Owning a Great Blog: A Data-Driven Approach - Kopdar 1000 Blogger Nusantara (...
 
Breakout GoMeasure (sg and kl) - google analytics 101 - clicktrue.ppt
Breakout   GoMeasure (sg and kl) - google analytics 101 - clicktrue.pptBreakout   GoMeasure (sg and kl) - google analytics 101 - clicktrue.ppt
Breakout GoMeasure (sg and kl) - google analytics 101 - clicktrue.ppt
 
12 GoMeasure (sg and kl) - page speed light speed path to conversions - joh...
12   GoMeasure (sg and kl) - page speed light speed path to conversions - joh...12   GoMeasure (sg and kl) - page speed light speed path to conversions - joh...
12 GoMeasure (sg and kl) - page speed light speed path to conversions - joh...
 
11 GoMeasure (sg and kl) - mobile landing page and site usability tips - ma...
11   GoMeasure (sg and kl) - mobile landing page and site usability tips - ma...11   GoMeasure (sg and kl) - mobile landing page and site usability tips - ma...
11 GoMeasure (sg and kl) - mobile landing page and site usability tips - ma...
 
10 GoMeasure (sg and kl) - designing for conversions - jereme wong - clicktrue
10   GoMeasure (sg and kl) - designing for conversions - jereme wong - clicktrue10   GoMeasure (sg and kl) - designing for conversions - jereme wong - clicktrue
10 GoMeasure (sg and kl) - designing for conversions - jereme wong - clicktrue
 
08 GoMeasure (sg and kl) - optimising for the post click experience - timo ...
08   GoMeasure (sg and kl) - optimising for the post click experience - timo ...08   GoMeasure (sg and kl) - optimising for the post click experience - timo ...
08 GoMeasure (sg and kl) - optimising for the post click experience - timo ...
 
07 GoMeasure (sg and kl) - measuring trends - nagalakshmi v - google
07   GoMeasure (sg and kl) - measuring trends - nagalakshmi v - google07   GoMeasure (sg and kl) - measuring trends - nagalakshmi v - google
07 GoMeasure (sg and kl) - measuring trends - nagalakshmi v - google
 
06 GoMeasure (sg and kl) - measuring social - john jersin - google
06   GoMeasure (sg and kl) - measuring social - john jersin - google06   GoMeasure (sg and kl) - measuring social - john jersin - google
06 GoMeasure (sg and kl) - measuring social - john jersin - google
 
04 GoMeasure (sg and kl) - defining and completing goals - timo josten - go...
04   GoMeasure (sg and kl) - defining and completing goals - timo josten - go...04   GoMeasure (sg and kl) - defining and completing goals - timo josten - go...
04 GoMeasure (sg and kl) - defining and completing goals - timo josten - go...
 
02 GoMeasure (sg and kl) - keynote - john jersin - google.ppt
02   GoMeasure (sg and kl) - keynote - john jersin - google.ppt02   GoMeasure (sg and kl) - keynote - john jersin - google.ppt
02 GoMeasure (sg and kl) - keynote - john jersin - google.ppt
 
14 GoMeasure (sg and kl) - 12 for 2012 - vinoaj vijeyakumaar - google
14   GoMeasure (sg and kl) - 12 for 2012 - vinoaj vijeyakumaar - google14   GoMeasure (sg and kl) - 12 for 2012 - vinoaj vijeyakumaar - google
14 GoMeasure (sg and kl) - 12 for 2012 - vinoaj vijeyakumaar - google
 
Google Analytics for Developers: GTUG KL Edition
Google Analytics for Developers: GTUG KL EditionGoogle Analytics for Developers: GTUG KL Edition
Google Analytics for Developers: GTUG KL Edition
 

Kürzlich hochgeladen

Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableSeo
 
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...lizamodels9
 
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...lizamodels9
 
Falcon's Invoice Discounting: Your Path to Prosperity
Falcon's Invoice Discounting: Your Path to ProsperityFalcon's Invoice Discounting: Your Path to Prosperity
Falcon's Invoice Discounting: Your Path to Prosperityhemanthkumar470700
 
The Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai Kuwait
The Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai KuwaitThe Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai Kuwait
The Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai Kuwaitdaisycvs
 
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best ServicesMysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best ServicesDipal Arora
 
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...amitlee9823
 
Dr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdfDr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdfAdmir Softic
 
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...Aggregage
 
Call Now ☎️🔝 9332606886🔝 Call Girls ❤ Service In Bhilwara Female Escorts Serv...
Call Now ☎️🔝 9332606886🔝 Call Girls ❤ Service In Bhilwara Female Escorts Serv...Call Now ☎️🔝 9332606886🔝 Call Girls ❤ Service In Bhilwara Female Escorts Serv...
Call Now ☎️🔝 9332606886🔝 Call Girls ❤ Service In Bhilwara Female Escorts Serv...Anamikakaur10
 
Call Girls In Noida 959961⊹3876 Independent Escort Service Noida
Call Girls In Noida 959961⊹3876 Independent Escort Service NoidaCall Girls In Noida 959961⊹3876 Independent Escort Service Noida
Call Girls In Noida 959961⊹3876 Independent Escort Service Noidadlhescort
 
JAYNAGAR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRL
JAYNAGAR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRLJAYNAGAR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRL
JAYNAGAR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRLkapoorjyoti4444
 
Business Model Canvas (BMC)- A new venture concept
Business Model Canvas (BMC)-  A new venture conceptBusiness Model Canvas (BMC)-  A new venture concept
Business Model Canvas (BMC)- A new venture conceptP&CO
 
Falcon Invoice Discounting: The best investment platform in india for investors
Falcon Invoice Discounting: The best investment platform in india for investorsFalcon Invoice Discounting: The best investment platform in india for investors
Falcon Invoice Discounting: The best investment platform in india for investorsFalcon Invoice Discounting
 
PHX May 2024 Corporate Presentation Final
PHX May 2024 Corporate Presentation FinalPHX May 2024 Corporate Presentation Final
PHX May 2024 Corporate Presentation FinalPanhandleOilandGas
 
Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...
Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...
Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...amitlee9823
 
Cheap Rate Call Girls In Noida Sector 62 Metro 959961乂3876
Cheap Rate Call Girls In Noida Sector 62 Metro 959961乂3876Cheap Rate Call Girls In Noida Sector 62 Metro 959961乂3876
Cheap Rate Call Girls In Noida Sector 62 Metro 959961乂3876dlhescort
 
Malegaon Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
Malegaon Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort ServiceMalegaon Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
Malegaon Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort ServiceDamini Dixit
 
Call Girls In Majnu Ka Tilla 959961~3876 Shot 2000 Night 8000
Call Girls In Majnu Ka Tilla 959961~3876 Shot 2000 Night 8000Call Girls In Majnu Ka Tilla 959961~3876 Shot 2000 Night 8000
Call Girls In Majnu Ka Tilla 959961~3876 Shot 2000 Night 8000dlhescort
 
RSA Conference Exhibitor List 2024 - Exhibitors Data
RSA Conference Exhibitor List 2024 - Exhibitors DataRSA Conference Exhibitor List 2024 - Exhibitors Data
RSA Conference Exhibitor List 2024 - Exhibitors DataExhibitors Data
 

Kürzlich hochgeladen (20)

Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
 
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
 
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
Russian Call Girls In Gurgaon ❤️8448577510 ⊹Best Escorts Service In 24/7 Delh...
 
Falcon's Invoice Discounting: Your Path to Prosperity
Falcon's Invoice Discounting: Your Path to ProsperityFalcon's Invoice Discounting: Your Path to Prosperity
Falcon's Invoice Discounting: Your Path to Prosperity
 
The Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai Kuwait
The Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai KuwaitThe Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai Kuwait
The Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai Kuwait
 
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best ServicesMysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
 
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
 
Dr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdfDr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdf
 
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
 
Call Now ☎️🔝 9332606886🔝 Call Girls ❤ Service In Bhilwara Female Escorts Serv...
Call Now ☎️🔝 9332606886🔝 Call Girls ❤ Service In Bhilwara Female Escorts Serv...Call Now ☎️🔝 9332606886🔝 Call Girls ❤ Service In Bhilwara Female Escorts Serv...
Call Now ☎️🔝 9332606886🔝 Call Girls ❤ Service In Bhilwara Female Escorts Serv...
 
Call Girls In Noida 959961⊹3876 Independent Escort Service Noida
Call Girls In Noida 959961⊹3876 Independent Escort Service NoidaCall Girls In Noida 959961⊹3876 Independent Escort Service Noida
Call Girls In Noida 959961⊹3876 Independent Escort Service Noida
 
JAYNAGAR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRL
JAYNAGAR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRLJAYNAGAR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRL
JAYNAGAR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRL
 
Business Model Canvas (BMC)- A new venture concept
Business Model Canvas (BMC)-  A new venture conceptBusiness Model Canvas (BMC)-  A new venture concept
Business Model Canvas (BMC)- A new venture concept
 
Falcon Invoice Discounting: The best investment platform in india for investors
Falcon Invoice Discounting: The best investment platform in india for investorsFalcon Invoice Discounting: The best investment platform in india for investors
Falcon Invoice Discounting: The best investment platform in india for investors
 
PHX May 2024 Corporate Presentation Final
PHX May 2024 Corporate Presentation FinalPHX May 2024 Corporate Presentation Final
PHX May 2024 Corporate Presentation Final
 
Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...
Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...
Call Girls Kengeri Satellite Town Just Call 👗 7737669865 👗 Top Class Call Gir...
 
Cheap Rate Call Girls In Noida Sector 62 Metro 959961乂3876
Cheap Rate Call Girls In Noida Sector 62 Metro 959961乂3876Cheap Rate Call Girls In Noida Sector 62 Metro 959961乂3876
Cheap Rate Call Girls In Noida Sector 62 Metro 959961乂3876
 
Malegaon Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
Malegaon Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort ServiceMalegaon Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
Malegaon Call Girls Service ☎ ️82500–77686 ☎️ Enjoy 24/7 Escort Service
 
Call Girls In Majnu Ka Tilla 959961~3876 Shot 2000 Night 8000
Call Girls In Majnu Ka Tilla 959961~3876 Shot 2000 Night 8000Call Girls In Majnu Ka Tilla 959961~3876 Shot 2000 Night 8000
Call Girls In Majnu Ka Tilla 959961~3876 Shot 2000 Night 8000
 
RSA Conference Exhibitor List 2024 - Exhibitors Data
RSA Conference Exhibitor List 2024 - Exhibitors DataRSA Conference Exhibitor List 2024 - Exhibitors Data
RSA Conference Exhibitor List 2024 - Exhibitors Data
 

GTUG Philippines - Implementing Google Analytics - 2011-10-11

  • 1. Slides: goo.gl/eL1zP Implementing Google Analytics Vinoaj Vijeyakumaar Senior Conversion Specialist, gplus.to/vinoaj Google Southeast Asia twitter.com/vinoaj conversionroom-japac.blogspot.com GTUG PH, Oct 2011
  • 3. The Role of the Web Analyst Reporting Actionable Insights http://www.flickr.com/photos/kire/797533507/sizes/o/in/photostream/
  • 4. What does “Action” mean? Discovering new opportunities (eg. New markets, hot trends, customer segments) Optimisation Improving marketing strategies Maximising reach (eg. New markets, optimise messaging) of your apps and delighting users Enhancing the user experience (eg. Compelling content, optimal user flows)
  • 5. Agenda • How GA Works • Tracking –  Basics –  Event Tracking –  Custom Variables –  Social Interaction Tracking –  Campaign Variables –  Page Load Time Tracking • Mobile Tracking –  WAP –  Android and iOS • Tracking Other Platforms
  • 9. Site & Application Reporting
  • 10. Track Behaviour Behaviour Entry Exit Engagement Reports on 125+ standard metrics and dimensions 1 0
  • 11. The GA Async Tracking Code Look for _gaq stack and execute queued commands HTML5: Execute script asynchronously Dynamically load the ga.js tracking library 1 1
  • 12. How Google Analytics works 1. Request--"Show me this Website Server webpage" __utm.gif? utmwv=6.3&utmn=101027544&utmsr=1280x854&utm sc=32-bit&utmul=en&utmje=1&utmjv=1.5&utmfl=7.0 r24&utmdt=My <html> <head> ... 2. Serve page %20Website&utmhn=www.site.com&utmp=/ ... index.html&utmac=UA-51244-4&utmcc=__utma User %3D117945243.823564440.1131054947.1131080858.1 3. Request: ga.js 133834608.4%3B+__utmb%3D117945243%3B </head> <html> 5. Call trackPageview() ... +__utmc%3D117945243%3B+__utmz function ... 4. Serve ga.js %3D117945243.1131054947.3.2.utmccn%3DGoogle Servers 6. Read & write cookies Secure %28Spring%20Sale%29%7Cutmcsr%3D%28google 7. Send gif request. %29%7Cutmcmd%3D%28ppc%29% %7Cutmtm%3D Request contains %28shoes%29%3B data. 8. Serve gif
  • 13. The __utm.gif hit __utm.gif? utmwv=6.3&utmn=101027544&utmsr=1280x854&utmsc=32- bit&utmul=en&utmje=1&utmjv=1.5&utmfl=7.0 r24&utmdt=My %20Website&utmhn=www.site.com&utmp=/ index.html&utmac=UA-51244-4&utmcc=__utma %3D117945243.823564440.1131054947.1131080858.1133834 608.4%3B+__utmb%3D117945243%3B+__utmc %3D117945243%3B+__utmz %3D117945243.1131054947.3.2.utmccn%3D%28Spring %20Sale%29%7Cutmcsr%3D%28google%29%7Cutmcmd%3D %28ppc%29% %7Cutmtm%3D%28shoes%29%3B Screen Resolution: 1280x854 Page Title: My Website Screen Colors: 32-bit Hostname: www.site.com Browser Language: English(en) Filename: /index.html Java Enabled? Yes (1) Google Analytics Account: UA-51244-4 Java Version: 1.5 Visits: 4 Flash Version: 7.0r24 Campaign: Spring Sale | Google(PPC) | shoes
  • 14. Raw Data to Reports 1 4
  • 16. Understand the website structure Single Multiple domain domains Multiple sub- Multiple domains domains and multiple sub- domain
  • 17. Simplest GATC Installation • All content on a single domain <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-XXXXX-X']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script>
  • 18. GATC – Multiple Sub-Domains • Content exists on multiple sub-domains on a single top-level domain <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-XXXXX-X']); _gaq.push(['_setDomainName', '.mysite.com']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script>
  • 19. GATC – Multiple Domains • Content exists on multiple top-level domains _link() <script type="text/javascript"> Update all links between domains to include the _link() method. var _gaq = _gaq || []; <a href=“http://www.mysite-support.com” onclick=“_gaq.push _gaq.push(['_setAccount', 'UA-XXXXX-X']); ([‘_link’, this.href]);”>Support</a> _gaq.push(['_setDomainName', ’none']); _gaq.push(['_setAllowLinker', true]); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script>
  • 20. GATC – Multiple Domains and Sub-Domains • Content exists on multiple sub-domains on multiple top-level domain _link() Update all links between domains to <script type="text/javascript"> include the _link() method. var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-XXXXX-X']); Do not change links between sub- _gaq.push(['_setDomainName', ’.mysite.com']); domains on the same top-level _gaq.push(['_trackPageview']); domain. (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script>
  • 21. Linking When content exists on multiple domains use linking methods to pass cookie information between domains: •  For HTTP GET include the _link() method. _link() •  Cookie info in URL parameters •  Redirects user to the new URL <a href=“http://www.example.com” onclick= “_gaq.push([‘_link’, this.href]);”>Example</a> •  For HTTP POST include the _linkByPost() method. •  Cookie info in action value •  Used for forms and iFrames on other domains SUBMIT <form action="http://www.shoppingcart.com/form.php" name="f" method="post” onsubmit=”_gaq.push([‘_linkByPost’, this]);"> . . . </form>
  • 23. Event Tracking •  Traditional Google Analytics is pageview based
  • 24. What about the 1-page App/Site? • Single URL, no page refreshes
  • 25. Enter Event Tracking • Track events on your site • Detect events and trigger tracking call _gaq.push(['_trackEvent', Purpose Example category, Group of objects being 'Markers' action, tracked Type of user interaction 'Click' opt_label, with the object opt_value]); Additional info about 'Google the event Singapore' Numerical data about 1 the event 2 5
  • 26. Example: Tracking Outbound Social Media Links 2 6
  • 28. YouTube Video Tracking Example http://vinnysapidemos.googlecode.com/svn/trunk/ google/analytics/youtube/js-player-tracking.html
  • 29. How did visitors interact with my videos? (Action)
  • 30. Which videos were played? (Label)
  • 32. Custom Variables: Extended Measurement Model Behaviour Entry Exit Engagement 125+ Metrics and Dimensions+ X Custom Variables = Custom Measurement Platform 3 2
  • 33. Custom Variables _setCustomVar(index, name, value, opt_scope); •  index – position to store and transmit the variable (1 to 5) •  name – variable name (e.g. “member-type”) (case sensitive) •  value – variable value (e.g. “premium”) (case sensitive) •  opt_scope – 1:visitor-level; 2:session-level; 3:page-level (default: 3) •  Note: Length of Name + Value cannot exceed 64 characters _setCustomVar(1, ‘foo’, ‘bar’, 2);
  • 34. Visitor Level Custom Variables • Stays with the visitor across multiple visits to the site • Cannot store personally identifiable information _setCustomVar( 1, ‘MembershipLevel’, ‘Platinum’, 1);
  • 35. Session Level Custom Variables • Labels a session • Variable is discarded once session ends _setCustomVar( 3, ‘UsedChatWidget’, ‘true’, 2);
  • 36. Page Level Custom Variables • Useful for content grouping • Identify groups of pages according to attributes other than the page URL _setCustomVar( 5, ‘Author’, ‘John Jane Doe’, 3);
  • 38. Measure use of social plugins on your website
  • 39. What is social plugin tracking? Social plugin tracking in Analytics shows you: •  How social plugins are used •  Behavior of socially engaged users •  Comparative performance of different social plugins •  What content is socially engaging
  • 40. Setup for +1 button Setup for the button: None The +1 button on your website is already tracked.
  • 41. Setup for other networks • Other social buttons require a small javascript change to your website. When a social plugin is used call this method: _trackSocial(network, action, target_url);
  • 42. Copy & paste Twitter & Facebook code http://code.google.com/apis/analytics/docs/tracking/gaTrackingSocial.html
  • 43. Tracking Social Interactions MilkADeal.com Google Confidential and Proprietary
  • 44. <!– Email share button: --> <a onclick="showMailer(&#039;Check out MilkADeal for huge discounts in Malaysia! Here is my referral link: http:// milkadeal.com/r/&#039;);return false;" href="#"><div id="lnkMail"></ div></a> <!– Functions to track email share button usage: --> <script> function showMailer(myBody){ _gaTrack(); $(".winMessage").html(myBody); $("#mailer").modal(); } function _gaTrack() { _gaq.push(['_trackSocial', 'email', 'share']); } </script>
  • 45. What value do socially-engaged visitors hold for us? Google Confidential and Proprietary
  • 46. Overview of Socially-Engaged Traffic Google Confidential and Proprietary
  • 47. Where are the conversions? Google Confidential and Proprietary
  • 48. Encourage more email sharing Google Confidential and Proprietary
  • 51. URL Campaign Variables http://www.yoursite.com/landingpage.html? utm_source=yahoo&utm_medium=cpc&utm_campaign=Ja n+2011+Campaign&utm_term=my+keyword http://www.yoursite.com/landingpage.html? utm_source=twitter&utm_medium=tweet&utm_campaign=J an+03+One+Day+Sale http://www.yoursite.com/landingpage.html? utm_source=email&utm_medium=link&utm_campaign=Jan +2011+Newsletter 5 1
  • 52. Campaign Variable Basics Required Tags The Source is where the visitor was sent from. Examples: google, nytimes.com, facebook.com The Medium is the channel in which this URL is promoted. Examples: cpc, display, social, organic The Campaign should either indicate the overarching name for the marketing effort or just the specific ad campaign in which the ad lives. Optional Tags The Keyword is the search term that you bid on (search engines only) The Ad Content should indicate the ad name, copy, or other helpful information to identify the type of ad that was clicked.
  • 53. Android Referral Tracking http://market.android.com/details?id=com.myorg.myapp&referrer=utm_source %3Dgoogle%26utm_medium%3Dcpc%26utm_term%3D %257Bkeyword%257D%26utm_content%3DAd%2520A %26utm_campaign%3DApp%2520Download http://yoursite.com/yourapp.apk&referrer=utm_source%3Dgoogle %26utm_medium%3Dcpc%26utm_term%3D%257Bkeyword%257D %26utm_content%3DAd%2520A%26utm_campaign%3DApp %2520Download 5 3
  • 54. Example … Social Media http://www.yoursite.com/landingpage.html? utm_source=twitter& utm_medium=socialmedia& utm_campaign=My+social+campaign
  • 56. The Impact of Speed
  • 57. Tracking setup <script type="text/javascript">var _gaq = _gaq || [];_gaq.push(['_setAccount', 'UA-XXXXX- X']);_gaq.push(['_trackPageview']);(function() {var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);})();</ script>
  • 58. Tracking setup <script type="text/javascript">var _gaq = _gaq || [];_gaq.push(['_setAccount', 'UA- XXXXXX']);_gaq.push(['_trackPageview']);_gaq.push(['_trackPageLoadTime']); (function() {var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);})();</script>
  • 60. Tracking setup Time: 1.47 sec
  • 63. Page Speed Online pagespeed.googlelabs.com
  • 65. Before & After Amari Package Selection Original Page Page Page Speed Score 62 / 100 First View Load Time 8.739s Optimizations include: •  Removed whitespace in HTML •  Using minified versions of JS libraries •  Using minified CSS •  Serving optimised images •  Testing serving GZIPped (compressed) content
  • 66. Before & After Amari Package Selection Original Optimized % Page Page Page Change Page Speed Score 62 / 100 67 / 100 5% First View Load Time 8.739s 7.738s 11.5% Optimizations include: •  Removed whitespace in HTML •  Using minified versions of JS libraries •  Using minified CSS •  Serving optimised images •  Testing serving GZIPped (compressed) content
  • 68. Mobile Tracking HTML & WAP Applications iPhone Windows Mobile Blackberry Android Pearl & Curve http://code.google.com/apis/analytics/docs/tracking/mobileAppsTracking.html 6 8
  • 69. Track Activity to Mobile Websites [link] Mobile Websites ü Server-side tracking ü Track all web-enabled devices (not just JS & cookie capable) ü Four languages supported: PHP, Perl, JSP, ASP ü Works just like Analytics on desktop web pages
  • 70. Copy & Paste Snippets 7 0
  • 71. A Quick Look at the PHP Code Snippet Insert a pixel for tracking Page rendering script Generate the pixel URL Send the request to GA ga.php 7 1
  • 72. Server-to-Server Communications Secure Google Servers Website Server Request pixel: Send request to /ga.php?.... GA servers 7 2
  • 73. Google Analytics Mobile SDK Native App Tracking Unique Users Pageviews Events Ecommerce Custom Variables Android Market Referrals
  • 74. Setting Up A Tracker Object In An Activity GoogleAnalyticsTracker tracker; onCreate tracker = GoogleAnalyticsTracker.getInstance(); tracker.startNewSession("UA-xxx-y", this); 74
  • 75. Dispatching Events Tracked data is queued and dispatched in bundles • Saves battery life • Can track when users are offline tracker.dispatch(); - or - tracker.start("UA-xxx-y", 20, this); 75
  • 76. Tracking User Preferences • How does user behavior differ by orientation?
  • 77. Custom Variables Page tracker.setCustomVar(1, “orientation”, “portrait”, 3); tracker.setCustomVar(1, “orientation”, “landscape”, 3);
  • 78. Reporting on User Preferences
  • 79. Reporting on User Preferences
  • 80. Reporting on User Preferences
  • 81. Reporting on User Preferences
  • 82. Reporting on User Preferences
  • 83. Tracking In-App Purchases • How much revenue does my application generate? • Which products are most popular?
  • 84. Reporting In App Purchases
  • 86. Tracking on Other Platforms 8 6
  • 87. Chrome Extensions •  Load GA within Chrome extension page Call _trackPageView to measure extension activation Call _trackEvent to track interactions
  • 88. Flash / Flex Track Pageviews Track Events
  • 89. Silverlight 8 9
  • 91. Subscribe for the Latest News Subscribe to receive latest articles in your inbox conversionroom-japac.blogspot.com
  • 93. Starter Guides •  Handy Google Analytics Resources: http://cse-sea.blogspot.com/2009/01/handy-google- analytics-resources.html •  Getting Started is Easy: http://cse-sea.blogspot.com/2009/03/google-analytics- getting-started-is.html 9 3
  • 94. ConversionUniversity.com Your Name Here
  • 95. Google Analytics Individual Qualification Your Name Here
  • 96. Parties Can Verify Your Qualification Online
  • 98. Recap
  • 99. •  Data is Gold •  Tag & Track •  GA Tracking Code •  Event Tracking •  Custom Variables •  Social Interaction Tracking •  Campaign Variables •  Page Load Time Tracking •  Take Action!!
  • 100. Thank You! @vinoaj; gplus.to/vinoaj