LEARN
Verify Crawling With Server Logs

IN ONE SENTENCE
AI-side crawling is effectively invisible in web analytics; server logs are the only first-party source for whether content was fetched and what was returned.
Requests that do not execute JavaScript never reach front-end analytics, so AI-side crawling is effectively invisible there. Server logs are the only first-party source for whether content was fetched and what the crawler received.
OUR POSITION
Read the logs before rewriting content. That order removes the most expensive class of wasted work — a page that renders perfectly in a browser while the crawler receives a shell, which only logs will expose.
What to read
Group request volume and status codes by user agent, keeping retrieval and training agents separate.
Read response sizes. A large difference across agents for the same URL means the response branches on user agent.
Read changes in crawl frequency. A sharp drop means checking access rules and availability first, not content.
Three common findings and their actions
No requests at all from an agent: check robots and the CDN or edge layer, which frequently blocks outside your site config.
Requests present with many 4xx/5xx: fix availability first — it ranks ahead of any content work.
200s with unusually small bodies: check the rendering path and confirm key content does not depend on client-side rendering.
Collection notes
Volume is large. Pre-aggregate by agent and path rather than scanning everything each time.
User agents can be spoofed or changed, so treat them as a lead and corroborate with IP ranges and behaviour when something looks wrong.
⚠️ Logs, webmaster tools and web analytics measure different things. Do not sum them, and do not adjust one to close a gap.
Data behind this page
13.1 / 3.4 / 0.1 / ≈0
Monthly clicks per keyword at positions 1–3 / 4–10 / 11–20 / 21+
Source:Our keyword-level analysis of 4,074 non-branded keywords for a leading site in this category,2026-06
Sources
- [1]Optimizing your website for generative AI features on Google Search.Google Search Central.2026-05-15
Updated 2026-08-10