DEV Community

Cover image for How To Event Stream From Your Gatsby Website Using Open Source RudderStack
Team RudderStack for RudderStack

Posted on • Originally published at rudderstack.com

How To Event Stream From Your Gatsby Website Using Open Source RudderStack

RudderStack is an open-source Customer Data Pipeline that allows you to track and send real-time events from your web, mobile, and server-side sources to your entire customer data stack. Our primary repository - rudder-server - is open-sourced on GitHub.

With RudderStack's open-source Gatsby plugin, you can easily integrate your Gatsby site with RudderStack, and track and capture customer events from it in real-time.

To instrument real-time event streams on your Gatsby website using RudderStack, we need to follow these four steps:

  1. Instrument your Gatsby website with RudderStack using the Gatsby plugin
  2. (Optional) Set up the RudderStack tracking code for your website
  3. Create a tool/warehouse destination in RudderStack for your Gatsby site's event data
  4. Deploy your Gatsby site and verify the event stream

Pre-Requisites

This post assumes you have already installed and set up your Gatsby website. If you haven't done so, we recommend following the official Gatsby documentation to get started.

Step 1: Instrument Your Gatsby Website With RudderStack Using The Gatsby Plugin

Create A Source In RudderStack

Before you instrument your Gatsby site with RudderStack, you will need to set up a JavaScript source in your RudderStack dashboard, which will track and capture events from your website. To do so, follow these steps:

1. Log into your RudderStack dashboard. If you don't have an account, please sign up.

2. Once you have logged in, you should see the following dashboard:

3. Note the Data Plane URL, which is required to instrument your Gatsby site with RudderStack.


4. The next step is to create a source. To do this, click on the Add Source button. Optionally, you can select the Directory option on the left nav bar and select Event Streams under Sources.

For the Gatsby plugin, we will set up a simple JavaScript source.

5. Assign a name to your source, and click on Next.

6. Your event source is now configured. Note the Write Key associated with this source. This is also required to configure the RudderStack-Gatsby integration.

Instrument Your Gatsby Site With RudderStack

To instrument your Gatsby website with RudderStack, we will leverage the open-source Gatsby plugin for RudderStack. Follow these steps:

1. Navigate to the root directory, which contains your site's assets and resources.

2. Type the following command depending on the package manager of your choice:

  • For NPM: $ npm install --save gatsby-plugin-rudderstack
  • For YARN: $ yarn add gatsby-plugin-rudderstack

3. To set up the plugin, you will need to configure your gatsby-config.js file with the source Write Key and the Data Plane URL that you have obtained from the previous section (Create a source in RudderStack).

4. The configuration options are as shown:

plugins: [  {    resolve: `gatsby-plugin-rudderstack`,    options: {      prodKey: `RUDDERSTACK_PRODUCTION_WRITE_KEY`,      devKey: `RUDDERSTACK_DEV_WRITE_KEY`,      trackPage: false,      trackPageDelay: 50,      dataPlaneUrl: `https://override-rudderstack-endpoint`,      controlPlaneUrl: `https://override-control-plane-url`,      delayLoad: false,      delayLoadTime: 1000,      manualLoad: false,    }  }];

Enter fullscreen mode Exit fullscreen mode

For details on each of the above parameters, please check out our docs.

Important Notes

  • Assign the source write key to the prodKey parameter if you are using a production environment. Otherwise, assign it to the devKey parameter.
  • If you are using a self-hosted control plane to manage your event stream configurations, enter the URL for the controlPlaneUrl. For this post, we have used the RudderStack-hosted free control plane, which requires no setup. It also has more features than the open-source control plane, such as Live Events - which allows you to view the live events captured from your event source.

(Optional) Step 2: Set Up The RudderStack Tracking Code For Your Website

Note: This section describes how to track page views manually using the below JavaScript code snippet. A prerequisite for this is that you have set trackPage to false in your gatsby-config.js file. (Step 4 in the previous section, Instrument Your Gatsby Site with RudderStack).

If you want to track pageviews automatically, set trackPage to true in your gatsby-config.js file. For more details on tracking page views automatically, refer to our docs.

Next, we will set up the code for RudderStack to track page views from our Gatsby site. This means that RudderStack will capture every page view activity each time a user accesses/ views a page on your website.

To do so, follow these steps:

1. Go to your local site repository and navigate to node_modules - gatsby-plugin-rudderstack folder.

2. Locate and open the gatsby-browser.jsfile.

3. Add the following code at the end of this file:

// gatsby-browser.js

exports.onRouteUpdate = () => {  window.rudderanalytics && window.rudderanalytics.page();};

Enter fullscreen mode Exit fullscreen mode

4. Save the file.

Step 3: Create A Tool Destination In RudderStack For Your Gatsby Site's Event Data

RudderStack supports over 80 tools to which you can reliably send your event data. For this tutorial, we will configure a Google Analytics destination in RudderStack. To configure this destination in RudderStack, follow these steps:

1. Select the Destinations option in the left nav bar of your dashboard, and click on the Add Destination button. Since you have already configured a source, you can also click on the Add Destination button as shown below:

Note: If you have already configured a destination in RudderStack before and want to send your event data to that platform, use the Connect Destinations option to connect to your source.

2. Select Google Analytics from the list of destinations.

3. Assign a name to your destination, and click on Next.

4. Choose the source. We will select the JavaScript source we have already configured for this tutorial.

5. Add the relevant Connection Settings. Most importantly, you will be required to enter the Google Analytics Tracking ID. You can also configure the other optional settings as shown below, and then click on Next.

6. RudderStack gives you the option to transform your events before sending them to your destination. Get more information on RudderStack's user transformation feature in our docs.

7. Your destination is now configured. You should now see the following source-destination connection in your dashboard:

(Alternate) Step 3: Create A Warehouse Destination In RudderStack For Your Gatsby Site's Event Data

Important: Before configuring a data warehouse as a RudderStack destination, you will need to set up a new project in your warehouse. Also, you will need to create a new RudderStack user role with the relevant permissions. Follow our docs to get detailed, step-by-step instructions on how to do so for the data warehouse of your choice.

We will set up a Google BigQuery warehouse destination for this tutorial to route all the events from our Gatsby website. As mentioned above, set up a BigQuery project with the required permissions for the service account by following our doc.

Once you have set up the project and the required user permissions, follow these steps:

1. From the list of destinations, select Google BigQuery, as shown:

2. Assign a name to this destination, and click on Next.

3. Choose the source from which you want to send the events. We will select the JavaScript source associated with our Gatsby website for this destination.

4. Specify the Connection Credentials. Enter the BigQuery Project ID and the Staging Bucket Name. Follow these instructions to get this information.

5. Copy the contents of the private JSON file. More information on how to do this in our doc.

That's it! You have successfully set up BigQuery as a warehouse destination in RudderStack.

Step 4: Deploy Your Gatsby Site And Verify The Event Stream

To verify if everything works correctly, let's finally deploy our website and test if the events are being delivered to the destination. For this post, we will test the event stream for our Google Analytics destination, which we set up in Step 3 (Instrument a Tool Destination in RudderStack).

Follow these steps:

1. Navigate to the folder of your local site, as shown:

2. Run the command gatsby build if you are using a production environment. If you are using a development environment, run the command gatsby develop.

3. Since we are using a production environment, let's deploy our site using gatsby serve. A localhost URL will be served, which we can then use to access our site:

4. Browse through your website by clicking on different posts or pages.

5. See if RudderStack can track the different page views by going to the Live Events section on the source dashboard page:

Note: After deploying your production site, there can be a lag before events start sending. Don't worry. All events are captured and sent; just be aware that they can take a few minutes to show up in the Live Events viewer and in your downstream destinations after production deployments.

6. RudderStack can successfully track and capture the pageview events, as seen below:

7. Now, let's check if the events are sent to Google Analytics as well by going to your Google Analytics dashboard and navigating to Realtime - Events.

We see one active user on our Gatsby website, which means the page view event was delivered successfully. Similarly, you should also be able to see the event received in your Google BigQuery warehouse.

Sign Up For Free And Start Sending Data

Test out our event stream, ELT, and reverse-ETL pipelines. Use our HTTP source to send data in less than 5 minutes, or install one of our 12 SDKs in your website or app. Get Started

Top comments (0)