How to Add Google Analytics 4 to Your Website
GA4 is Google's free tool for tracking who visits your site, where they come from, and what they do. Follow these steps to get it set up.
Go to analytics.google.com and sign in. Use the same Google account you want to use for AnalyticsDash.
If you're starting fresh, GA4 walks you through account creation automatically. If you already have a GA4 account, click the gear icon and navigate here:
Name the property after your domain (e.g. lighthouselaunch.com). Set your time zone and currency, then click Next.
After creating the property, choose Web as your platform. Enter your website URL and click Create stream.
After saving, you'll see the stream details. Find and copy your Measurement ID โ you'll need it in the next step.
How you install it depends on your website platform. Find yours below:
<head> of every pageFor custom HTML sites, paste this snippet before the closing </head> tag on every page:
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XXXXXXXXXX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-XXXXXXXXXX');
</script>
Replace both instances of G-XXXXXXXXXX with your actual Measurement ID.
Open GA4 and go to the Realtime report. Then open your website in a new browser tab. Within 60 seconds, you should appear as an active user.
See your GA4 data in AnalyticsDash
Once GA4 is installed, connect it here for real-time traffic, channel breakdown, top pages, and smart insights โ all in one dashboard.
Sign in with Google โ it's free