Andrew
Web development enthusiast with a keen interest in anything frontend.
A quick start-up guide on how to add Google Analytics to your Gatsby site
Once you have your site live you will start wanting to get an idea of how many visitors are coming to your site along with other metrics such as:
Google Analytics provides a way to collect this data and perform analytics on it answering the above questions among many others. The platform is free for 10 million hits per month per Tracking ID.
The Tracking ID is what is used to identify data with your site's traffic. You would typically use a different Tracking ID for each website you are monitoring.
First step is to set up a Google Analytics account. You can do that here by signing in with your Google Account.
Google also has a get started page get started page for reference.
Once you have an account you will be prompted to set up a new property. This property will have a Tracking ID associated with it. In this case the property will be the website itself. Fill out the below form with your website name and URL
Once complete you should now have a Tracking ID take note of it as your website will need to reference it when sending page views to Google Analytics. It should be in the format UA-XXXXXXXXX-X
.
You can find this tracking ID later by going to Admin > Tracking Info > Tracking Code
.
Now to configure Gatsby to send page views to your Google Analytics account.
We are going to use gatsby-plugin-google-analytics
npm install --save gatsby-plugin-google-analytics
In your gatsby-config.js
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: "UA-XXXXXXXXX-X",
head: true,
},
},
Here replace UA-XXXXXXXXX-X
with your own Tracking ID.
Full documentation for the plugin can be found in the Gatsby plugins documentation here or on the Github page here
Here I have used head: true
as suggested in Google's documentation. This will put the tracking script in the head. This defaults to false which will instead put it in the body.
Once this is configured you can deploy your site to test! If you navigate to Home
on Google Analytics you should see a dashboard with different statistics. The first shows how many users have accessed your site:
Now you have a basic setup to monitor page views on your website - there are a number of extra configuration options both with the Gatsby plugin and also on Google Analytics itself so you can tailor to meet your website's needs.
Web development enthusiast with a keen interest in anything frontend.