Skip to content
GigAI Tools
4 tools
Problem → solution

I don't know whether AI crawlers are actually visiting my site

Allowing a crawler in robots.txt is permission, not proof. Only your logs show whether the crawlers came.

The quick answer

Your server's access log is the only authoritative record, because AI crawlers don't run JavaScript and are therefore invisible to analytics tools like GA4. Export an nginx or Apache log and search it for crawler user-agents, or parse it in your browser to get per-bot visit counts, last-seen dates and the pages each one fetched.

How to fix it

Follow these steps and you'll have it sorted in a couple of minutes.

  1. 1

    Export an access log

    Usually /var/log/nginx/access.log or /var/log/apache2/access.log. Gunzip rotated files first. About a month of data gives a useful trend.

  2. 2

    Parse it locally

    Drop the file into the Log Analyzer. It runs in your browser and discards the IP column as it reads, because logs contain visitor IP addresses.

  3. 3

    Read the per-bot cards

    Each crawler shows request counts, first and last seen, most-fetched pages, status codes and a daily trend.

  4. 4

    Check the status codes

    A bot receiving 403s is being turned away rather than served. A high hit count with a low success rate is worse than no visits.

  5. 5

    Find the never-fetched pages

    Paste your sitemap URLs to list the pages no AI crawler has ever touched, which is usually the most actionable output.

Common mistakes to avoid
  • Using analytics to measure bot traffic. Bots don't run JavaScript, so GA4 and similar tools are structurally blind to them.
  • Uploading raw logs to an online analyzer. Access logs contain your visitors' IP addresses, which is personal data. Parse them locally instead.
  • Reading zero hits as proof of blocking. If you use a CDN, crawler requests may be served from edge cache and never reach your origin log at all.
  • Trusting the user-agent for security decisions. Anyone can send any user-agent. Verify with reverse DNS against the operator's published ranges if it matters.

Frequently asked questions

Ready? Start with AI Crawler Log Analyzer

Free, private and instant: everything runs in your browser.