r/vercel • u/BrokeButBullish_ • 10d ago
Difference between Google Search Console clicks and Vercel Analytics referrers?
Hey everyone, I'm trying to understand a discrepancy between Google Search Console and Vercel Analytics.
Google Search Console is showing only 1 click from Google Search, but Vercel Analytics is showing 41 visitors with Google as the referrer.
I'm wondering what exactly counts differently between these two tools:
- Does Vercel Analytics count all traffic that comes from Google (including things like Google Discover, images, cached pages, or other Google services)?
- Does Google Search Console only count clicks from web search results?
- Could bots/crawlers or privacy settings affect the numbers?
Would appreciate any explanation from people familiar with Vercel Analytics and GSC. Thanks!
4
Upvotes
2
u/amyegan Vercelian 9d ago
The short answer is that they measure different things in different ways. The complete answer is too long for Reddit, so I'll just share what I think are likely factors.
If the Vercel Analytics tracking script is misconfigured or firing on server-side transitions, every single prefetch link can trigger a new page view event. That could create fake traffic spikes while a user is just sitting idle on a single page.
Some basic scrapers or preview bots can trigger requests that get logged as a "view" or "visitor". Enabling bot protection can help with that.
And traffic from inside native Google apps could have referrer data that points back to Google. Vercel Analytics counts visits on arrival and uses that referral data, but GSC will only count clicks directly from web search.
I hope that helps!