Google Analytics Causing Failed Core Web Vitals: Next Steps

Last updated on Apr 15th, 2024 | 5 min

For online business owners who want to attract, engage, and convert users, failed Core Web Vitals are a critical warning.

Failed Core Web Vitals

An official benchmark for how enjoyable your website to real-world users is, Google’s Core Web Vitals are a set of three performance metrics:

Together, these metrics offer a standardized way to gauge a site’s performance based on real user interactions. Passing the assessment tells you that your site loads fast, reacts quickly, and doesn’t behave abnormally while users interact with it.

So, it comes as a big surprise when Google’s own Analytics seems to be causing failed Core Web Vitals assessments.

Let’s investigate!

How Does Google Analytics Work?

Google Analytics works by tracking user interactions on a website and providing insights into user behavior, traffic sources, and conversions. It is implemented on a website by adding a tracking code snippet provided by Google Analytics.

This JavaScript snippet, also known as the Global Site Tag (gtag.js), goes into your site’s section on every webpage you want to track:

Google Analytics tracking code snippet

This code collects data about user interactions, such as page views, clicks, and conversions, and sends it to Google's servers for analysis. Website owners can then access this data through the Google Analytics dashboard to gain insights into their website's performance and user engagement.

So far, so good.

Now, let’s go look at what happens under the hood.

Impact On Performance (A Closer Look)

Upon closer inspection with disabled cache and no active performance optimizations, we see the gtag.js is loaded as a single HTTP request weighing a miniscule 111kB, along with a Microsoft Clarity gtag of 769B.

Page inspect for Google Analytics Tracking Code

As far as initial page load goes, the Google Analytics tracking code displays an expected behavior and doesn’t contribute to excessive HTTP requests, unused JavaScript, or blocked main thread.

Where does the misconception stem from, then?

Does Google Analytics Really Affect Core Web Vitals?

Adding Google Analytics tracking to your website alone does not risk failing the Core Web Vitals assessment (or Lagest Contentful Paint specifically). This is simply because the snippet placed in the head of web pages is extremely lightweight and doesn’t block any of the vital processes in rendering a page’s content.

So, why are site owners linking failed Core Web Vitals to Google Analytics?

The Difference Between Lab and Field Data

Our experience shows that there’s still a considerable misunderstanding when it comes to reading Google PageSpeed reports. Mainly because of how the report evolved over time.

Let’s clear up the confusion.

After the introduction of Core Web Vitals, the Google team worked hard on shifting the attention to what we call “field data”—now displayed at the very top of your report as the Core Web Vitals assessment.

It is generated with data from real users interacting with your website from the CrUX dataset (aka Chrome User Experience Report).

Amazon.com Passed Core Web Vitals

Core Web Vitals assessment based on field data for amazon.com

Before Google’s Core Web Vitals became the standard for great user experience, we relied on the Performance Score (measured from 0 to 100)—now displayed after the CWV assessment.

Amazon.com Performance Score Desktop in Google PageSpeed Insights Report

Performance Score based on lab data for amazon.com

The reason it got deprioritized is that it didn’t accurately represent what happens when users land on your website. The Performance score is generated with “lab data” from Lighthouse—in other words, these are the results from a simulated environment.

As you can see from the screenshots above, Amazon is passing the Core Web Vitals with flying colors, but in a controlled environment Total Blocking Time (TBT), Speed Index (SI), and LCP issues are flagged for further improvement. That’s a great way to isolate specific issues and work on optimizing them.

However, at the end of the day, what matters most is how real users experience your website, and that’s where your main focus should go first.

Final Verdict

In conclusion, if you’re failing Core Web Vitals, Google Analytics tracking is unlikely to be the reason. Instead, make sure you’re not reading lab results instead of field ones, and give your PSI report another scroll to explore the Opportunities and Diagnostics sections.

What About Google Tag Manager and Google AdSense?

In reality, site owners rarely go as far as setting up analytics and calling it a day.

Google Tag Manager and Google AdSense are popular tools for online businesses that want to track specific events and run ads on their websites for extra revenue from incoming traffic.

While Google Analytics itself is not a source for performance issues, our engineers at NitroPack always conduct in-depth analyses to identify the real culprits.

Using our earlier example with kiteworks.com, we see that upon interaction with the home page, a chain of extra event tags (gtm.js) from Tag Manager is fired.

Google Tag Manager Event Tags Inspect Tool

And that’s a lot of extra gtm.js tags, hence the excessive number of HTTP requests.

Since the Google Analytics code loads first before everything else, when your website has lots of event tags, you can expect the GA snippet to call all other gtm.js, resulting in loading delays and worsened results in metrics, like:

In your PSI report, such a string will be flagged by the “Reduce unused JavaScript” warning:

Reduce Unused JavaScript Warning in Google PageSpeed Insights Report

And if your Google Tag Manager looks anything remotely like this, it’s time to declutter and reorganize:

Google Tag Manager excessive tags issue

Fixing “Reduce Unused JavaScript” Caused By Google Tag Manager 

Your first step is to delay third-party scripts with async or defer attributes and let them load in the background. These attributes essentially turn scripts into non-blocking and reduce the overall impact of third-party code.

While similar, these attributes have important differences:

  • Scripts with the defer attribute keep their relative order. The browser doesn't wait for them to render the page but does execute them in order. For example, we have two scripts—script 1 and script 2—in that order. If we defer both, the browser will always execute script 1 first, even if script 2 was downloaded first.
  • Scripts with the async attribute are completely independent. Whichever loads first is executed first.

Gtm tags load asynchronously by default, but when there are this many, it’s like you have two very long queues of requests—even though they are passing through, they can only pass one at a time and will inevitably have to wait their turn.

By optimizing the number of Google Tag Manager events first and deferring them next, you can ensure the initial load doesn’t suffer from unnecessary delays.

Reduce Unused JavaScript and Optimize All Your Site’s Resources With NitroPack →

Risks and Trade-Offs With Google AdSense

When site owners dedicate ad units in various formats on a web page, Google AdSense provides code snippets (HTML/JavaScript) for each ad unit which are pasted into the HTML of their website's pages where the ads should appear.

When a user visits a webpage containing the AdSense ad code, the browser executes the JavaScript code provided by AdSense, generating revenue for the site owner on impression.

Google AdSense Ads in Blog Article Page

Unfortunately, because of their render-blocking qualities, AdSense ads can impact site performance (and specifically Web Vitals like LCP and CLS).

With NitroPack, site owners can choose to “Optimize Ads” which will delay the JS until a user interaction. But because AdSense works based on impressions, this might translate into some ad revenue losses.

In this case, based on the behavior of your audiences, you should decide what’s more beneficial for your business:

1) optimal performance for better browsing experiences

or

2) generating as much ad revenue as possible but eventually losing traffic to unstable site behavior.

FAQ

Is self-hosting Google Analytics worth it?

While some site owners consider self-hosting Google Analytics tracking for optimal Core Web Vitals, there is little need to go through with it. Instead of adding complexity, cost, and potential limitations compared to relying on Google's infrastructure, focus on optimizing Google Tag Manager events to meet Core Web Vitals standards.
 

Lora Raykova
Web Performance Buff

Lora has 7+ years of experience developing in-depth, specialized content for SaaS companies in the CEE region. She has sourced and collaborated with subject-matter experts on site speed optimization for WordPress, Core Web Vitals, and the future of web performance. "If you can't explain it to a 7-year-old, you've not researched it well enough" is Lora's guiding principle when publishing professional insight for complex technical topics.