Skip to content
Start in Cloud
← All posts

Google AI Search Backlash: How to Measure AI Overviews Traffic Loss and DuckDuckGo Referral Shifts

Pascale Beier 5 min read

Line chart showing Google organic clicks declining while DuckDuckGo and AI assistant referrals rise

Your search traffic chart changed shape this spring, and the usual explanations do not cover it. Google is rolling out an AI-first search experience, a visible share of users is protesting by moving to no-AI alternatives, and AI Overviews answer queries before anyone clicks a result. All three shifts land in the same place: the referral data reaching your site.

This post covers what is actually happening, with the numbers from the reporting, and shows how to detect the shift in your own analytics instead of guessing.

The pattern is consistent across multiple outlets. TechCrunch reported that “DuckDuckGo noted a 30% increase in web visits to its no-AI search page week-over-week,” alongside new Chrome and Firefox extensions that make the no-AI experience a default. The Independent reported that DuckDuckGo app installs rose by nearly a third after Google’s AI updates, quoting CEO Gabriel Weinberg: “Google is force-feeding AI with no way to opt out.”

Gizmodo tied the growth to user frustration with AI-generated answers and declining result quality. Wide Open Country cited Pubity data putting DuckDuckGo’s traffic increase at 300% since Google’s changes, and noted a parallel rise in the Vivaldi browser.

Keep the scale honest: per Statcounter, DuckDuckGo holds roughly 0.7% global market share against Google’s 90%+. Nobody is dethroning Google this quarter. Acquisition analysis cares about your referral mix rather than global market share, though, and a few percentage points moving between engines is enough to break attribution assumptions and weekly dashboards.

AI Overviews reduce clicks to source sites

The second shift is structural. When Google answers a query inline with an AI Overview, the click to the source page often never happens. ExtremeTech called the AI-first model potentially “disastrous for both the company and the broader internet ecosystem” precisely because it starves source sites of visits.

The trust dimension makes it worse. A BBC investigation showed how easily AI answers can be manipulated, quoting SEO expert Lily Ray: “You should assume that you’re being manipulated until they have better systems in place.” The same reporting notes that 2.5 billion people see Google’s AI Overviews each month. Broad exposure plus visible skepticism drives users to test alternatives, and it should drive publishers to recheck their numbers.

Check your own referral mix first

Before changing strategy, measure. If you have raw analytics data, the first check takes minutes. With a HitKeep Parquet export, it is one DuckDB query:

-- Referral mix by search engine, week over week
SELECT
date_trunc('week', timestamp) AS week,
CASE
WHEN referrer ILIKE '%google%' THEN 'google'
WHEN referrer ILIKE '%duckduckgo%' THEN 'duckduckgo'
WHEN referrer ILIKE '%bing%' THEN 'bing'
WHEN referrer = '' THEN 'direct'
ELSE 'other'
END AS source,
count(*) AS pageviews
FROM 'pageviews.parquet'
GROUP BY 1, 2
ORDER BY 1 DESC, 3 DESC;

You are looking for three symptoms:

  • Google share falling while direct or other engines rise. That is the user migration showing up in your data.
  • Search Console impressions flat or rising while clicks fall. That is AI Overviews absorbing clicks you used to get.
  • Stable sessions but worse downstream conversion from organic. That points to a change in channel quality rather than lost acquisition, and the two problems need different fixes.

In the dashboard, period-over-period comparison against the weeks before Google’s rollout gives you the same answer without exporting anything.

Instrument funnels and events

A total-sessions chart hides structural change. To tell an acquisition drop apart from a channel-mix shift, you need event-level visibility:

  • Custom events for signup steps, key outbound clicks, and downloads, so conversion is measured independently of pageviews.
  • Funnels segmented by referrer, so you can see whether DuckDuckGo arrivals reach step two of onboarding at a different rate than Google arrivals.
  • UTM reporting for the channels you control, so paid and owned traffic does not blur the organic picture.
  • Bot and spam filtering at collection time. Bot traffic masquerades as referral shifts, and a small real change in channel mix can look much bigger than it is when bots skew the data.

None of this requires cookies. HitKeep records referrers and events with cookie-less tracking by default. That matters here because the same backlash pushing users toward DuckDuckGo is privacy sentiment. Collecting more data to study it would be the wrong response.

Track AI assistants as their own channel

Search engines are only half of the new referral landscape. ChatGPT, Perplexity, and Claude cite and link sources, and their crawlers fetch your pages before any human visit shows up. The BBC’s reporting notes more than a billion people use AI chatbots regularly. That audience never appears in a classic search report.

HitKeep treats this as its own reporting surface: AI visibility analytics separates AI referral traffic from search referrals, and AI fetch ingest records GPTBot, ClaudeBot, and PerplexityBot fetches from your edge or origin logs.

HitKeep AI visibility overview with fetch KPI cards, assistant filters, and crawl demand reporting
HitKeep’s AI visibility report separates assistant referrals and AI crawler fetches from regular search traffic.

If Google’s AI answers are taking your clicks, knowing which AI systems read and cite your content is the other half of the picture.

Run the measurement stack you can trust

When the search layer changes overnight, the analytics layer has to be something you can inspect and rely on. HitKeep is built for that case: a single Go binary with embedded DuckDB and NSQ, so there is no external database, cache, or queue to operate. Retention is configurable to your compliance constraints, and open exports in JSON, CSV, and Parquet support ad-hoc analysis like the query above. The self-hosted GA4 alternative guide covers the setup. One fair caveat from it: if your business depends on Google Ads attribution or BigQuery exports, a Google-native stack may remain essential.

If you want the same measurement without running infrastructure, HitKeep Cloud runs the identical open-source foundation in region-pinned EU (Frankfurt) or US (Virginia) infrastructure with managed updates and backups. That helps when the team that needs these answers this week has no time to operate another service.

Read more

Frequently asked questions

Are people really switching away from Google because of AI search?

A measurable subset is experimenting with alternatives. TechCrunch reported a 30% week-over-week increase in visits to DuckDuckGo's no-AI search page, and The Independent reported app installs up by nearly a third after Google's AI updates. Google remains dominant at scale, but the referral mix reaching your site is already changing.

How do Google AI Overviews affect my site traffic?

When AI-generated answers appear above traditional results, fewer searchers click through to source pages. The typical symptom is stable or rising impressions in Search Console combined with falling clicks and falling organic sessions. Whether that hits you depends on how much of your traffic comes from informational queries that AI Overviews can answer inline.

How do I detect an AI search traffic drop in my analytics?

Compare referrer-level pageviews period over period instead of watching total sessions. Watch for a falling Google share, a rising DuckDuckGo, Bing, or direct share, and an impressions-versus-clicks divergence in Search Console. Event-level funnels tell you whether a signup decline is an acquisition drop or a channel-quality shift.

Can I track DuckDuckGo and AI assistant referrals without cookies?

Yes. Referrer capture, custom events, goals, and funnels work without cookies or persistent identifiers. HitKeep records the referrer at collection time using cookie-less tracking, so engine-level segmentation works under GDPR and ePrivacy without a consent banner for analytics.

Do I need to replace Google Analytics because of AI search changes?

Not necessarily. You need reliable referrer segmentation, event-level funnels, and raw data exports to investigate the shift. If your current stack depends on Google Ads attribution or BigQuery exports, it may remain essential. If you want lower operational weight and data ownership, a self-hosted single binary or a managed EU/US cloud instance covers the same measurement needs.

Sources

  1. TechCrunch: DuckDuckGo makes its no-AI search engine easier to access as its traffic booms techcrunch.com
  2. The Independent: DuckDuckGo sees surge after Google's AI search updates independent.co.uk
  3. Gizmodo: DuckDuckGo's doing numbers after pitching itself as the home of AI-free web searches gizmodo.com
  4. Wide Open Country: Internet users begin turning backs on Google in protest wideopencountry.com
  5. ExtremeTech: How to search in the era of AI extremetech.com
  6. BBC Future: Google tackles attempts to hack its AI results bbc.com