Skip to content

keen/keen-tracking-adwords-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

keen-tracking-adwords-example

Example

import KeenTracking from 'keen-tracking';

const client = new KeenTracking({
  projectId: 'YOUR_PROJECT_ID',
  writeKey: 'YOUR_WRITE_KEY'
});

client.extendEvents(() => {
  return {
    page: {
      title: document.title,
      url: document.location.href
    },
    keen: {
      addons: [
        {
          name: 'keen:url_parser',
          input: {
            url: 'page.url'
          },
          output: 'page.info'
        }
      ]
    }
  }
});

client.recordEvent('pageviews', {
  // you can put any additional data here
});

Adwords URL Query String

In your Adwords Campaign, edit your Ad's Final URL:

  • add any parameter that will help you identify the source of the traffic later on. For example: "?ad_id=123"

Stream

Your events should contain page.info.query_string with values from the URL of the landing page (Final URL)

alt text

Explorer

Run a query to see how many visitors came from the Ad

  • Analysis type: count
  • Event Collection: pageviews
  • Add filter: page.info.query_string.ad_id = 123

alt text