DEV Community

Cover image for Website analytics with Netlify Functions and Google Sheets
Silvestar Bistrović
Silvestar Bistrović

Posted on • Originally published at silvestar.codes

Website analytics with Netlify Functions and Google Sheets

I gave up on analytics on my site a long time ago. I was using Google Analytics and Matomo (previously Piwik), but all it did to me was drive me crazy for two reasons:

  • I couldn't get the highest scores on page speed testing tools, and
  • I was obsessed with a number of pageviews and sessions.

Now that this is well behind me, I was interested to see if anyone visits my site these days.

Netlify function

Before I started, I knew I would use Netlify Functions. Luckily, I quickly found Oliver James' article and reused his code to set up the basic script.

exports.handler = async ({ headers }) => {
  ...

  return {
    statusCode: 200,
    body: "R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7",
    headers: { "content-type": "image/gif" },
    isBase64Encoded: true,
  };
};
Enter fullscreen mode Exit fullscreen mode

I also inserted the following snippet at the bottom of every page:

<img src="/.netlify/functions/clue/?url=$currentUrl" alt="">
Enter fullscreen mode Exit fullscreen mode

In short, I'm calling a Netlify function from the image tag and returning a base64 encoded image.

Note that I'm passing the url GET parameter that will tell me on which page the user is. $currentUrl is a placeholder variable here. I am actually using the page.url variable from 11ty.

Google Sheets

In his article, Oliver uses MongoDB, which I am unfamiliar with, so I figured I could use Google Sheets to record visits on my site. That brought me to the Google Sheets API docs, which didn't help since the docs are not very organized. So I tried my luck again and found the npm package google-spreadsheet. It is the most popular Google Sheets API wrapper for JavaScript, as they state.

The first step was to create an actual Google Sheets doc. Then I had to make a Google Cloud project and enable Google Sheets APIs. Then I had to set up the service account authentication to be able to make any requests.

☝️ Don't forget to execute the third step while setting the authentication.

“Share the doc with your service account using the email noted above.”

Finally, I could write the script and see the visitors. I learned that headers.referer wasn't working for me, so I decided that I would log only the date, path, and user agent string.

const now = new Date();
const url = event.queryStringParameters.url;
const ua = event.headers['user-agent'];
Enter fullscreen mode Exit fullscreen mode

To start working with the google-spreadsheet library, I needed to initialize and authenticate it first.

const doc = new GoogleSpreadsheet(process.env.GGL_SHTS_ID);

await doc.useServiceAccountAuth({
  client_email: process.env.GGL_SHTS_EMAIL,
  private_key: process.env.GGL_SHTS_KEY.replace(/\\n/gm, "\n"),
});
Enter fullscreen mode Exit fullscreen mode

Then I needed to load the document and the desired sheet.

await doc.loadInfo();
const sheet = doc.sheetsByIndex[0]
Enter fullscreen mode Exit fullscreen mode

Finally, I added a new row to the current sheet.

await sheet.addRow({
  date: now,
  url: url,
  ua: ua
});
Enter fullscreen mode Exit fullscreen mode

The complete code can be found on my website repository (which is publically exposed).

Gotchas

I had a few unexpected errors during the development phase. First, Google Sheets reported the following error: Client network socket disconnected before secure TLS connection was established. I wanted to return the status code as soon as possible and leave async functions to execute in the background. It worked in my local environment but didn't work in production. So I had to use the await keyword with async requests.

Second, the service account key was a multiline field stored in the Netlify environment variable. Unfortunately, Netlify has trouble reading the multiline values, but Mehul Kar shared the solution on Netlify Support Forum.

private_key: process.env.GGL_SHTS_KEY.replace(/\\n/gm, "\n"),
Enter fullscreen mode Exit fullscreen mode

Third, I saw a lot of HeadlessChrome user agents in my logs, much more than regular user agents. I figured these were bots, but I couldn't tell for sure. I asked a question on Dev.to, and Bramus confirmed that was the case. I think the majority of these logs come from the uptime checker.

Conclusion

For the first few days, I saw that my site was receiving hits, which was exactly what I wanted to see. So I hope this little piece of code was helpful to you as it was for me.

Top comments (1)

Collapse
 
tr11 profile image
Tiago Rangel

This seems cool!