惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

GbyAI
GbyAI
Martin Fowler
Martin Fowler
I
InfoQ
腾讯CDC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
爱范儿
爱范儿
Microsoft Security Blog
Microsoft Security Blog
Google DeepMind News
Google DeepMind News
D
DataBreaches.Net
云风的 BLOG
云风的 BLOG
F
Fortinet All Blogs
N
Netflix TechBlog - Medium
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
D
Docker
博客园 - 三生石上(FineUI控件)
Y
Y Combinator Blog
博客园 - Franky
Engineering at Meta
Engineering at Meta
B
Blog
罗磊的独立博客
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
V
Visual Studio Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Your analytics dashboard is blind to most AI traffic. Her...
Kenichi Uchiumi · 2026-06-26 · via DEV Community

Kenichi Uchiumi

A few weeks ago I went digging through raw server logs on a WordPress
site I run, out of simple curiosity about how often AI crawlers —
GPTBot, ClaudeBot, Perplexity, and friends — were actually visiting.

The number I found didn't match GA4 at all. Not even close.

The blind spot

GA4 (and most JS-based analytics) works by firing an event from
client-side JavaScript when a page loads in a browser. That's a
reasonable assumption when your visitors are humans with browsers.

It's a bad assumption when an increasing share of your traffic is
AI agents fetching pages via HTTP to read, summarize, or train on
your content. Most of these agents:

  • Don't execute JavaScript
  • Don't render the DOM
  • Just request the HTML and parse it server-side Which means: GA4 never sees them. Not "undercounts them" — never sees them at all, structurally, by design.

When I cross-checked GA4's pageview count against my raw access
logs filtered for known AI user-agents, the gap was roughly 9x.
Nine times more AI bot requests than GA4 reported as traffic of any
kind. That's not a rounding error — that's an entire category of
visitor your dashboard doesn't know exists.

Why this matters more every month

As more search behavior shifts toward AI Overviews, AI Mode, and
conversational assistants doing the browsing on a user's behalf, the
traffic GA4 can see is shrinking as a proportion of total
attention your content receives. You can be making real progress
with the systems generating zero-click answers — and your analytics
will tell you nothing changed.

If you can't see it, you can't optimize for it. You're flying half-blind.

What I built

EdgeShaping Liteis a small, free WordPress plugin that observes AI bot traffic at
the PHP layer instead of the JavaScript layer. No JS dependency, no
reliance on the bot executing anything — it just logs the request
when it matches a dictionary of known AI crawler user-agents.

Core design constraints I held myself to:

  • It doesn't block anything. This is an observation tool, not a firewall. Blocking AI crawlers is a different (valid) problem with different tools.
  • It doesn't modify content. No injected markup, no cloaking.
  • No data leaves the site. Everything stays in the WordPress database. No third-party telemetry. Install it, activate it, and you immediately get a dashboard: which bots, which pages, how often, when.

The more interesting part: the AHQG Matrix

Knowing that AI reads your pages is useful. Knowing which pages
AI reads relative to which pages humans actually find through search
is more useful — because the mismatch between those two signals is
where the actionable insight lives.

That's what the AHQG Matrix does (patent application filed on the
underlying method). It's a simple idea executed as a 2x2:

                    High human search clicks
                            |
   STANDARD                 |              ALIGNED
   (humans find it,         |        (both AI and humans
    AI mostly ignores it)   |         find it — healthy state)
                            |
   ---------------------------------------------------- High AI bot visits
                            |
   INCUBATION               |          LATENT GAP
   (neither finds it yet)   |    (AI already reads it heavily,
                            |     humans haven't discovered it yet)

The quadrant that matters most in practice is LATENT GAP: pages
AI is already crawling frequently — meaning some AI system has
judged them worth reading and probably worth citing — that haven't
yet translated into human search visibility. These are early signals
worth acting on before they show up anywhere else in your funnel
metrics.

Implementation-wise, the matrix needs two data sources:

  1. AI bot visit counts per page (from EdgeShaping's own observation log)
  2. Human search click counts per page (from the Search Console API) It plots every page on those two axes, splits the distribution at a computed threshold per axis, and buckets pages into the four quadrants. The Google Search Console integration is optional — without it, you still get the raw AI traffic ranking, just not the cross-reference.

There's also a secondary signal I didn't expect to find useful until
I built it: pages that get AI traffic but aren't in your sitemap at
all (an "inferred path" — AI found a route to a page your own site
architecture doesn't formally declare), and the inverse — pages in
your sitemap that neither AI nor humans ever reach (a genuine dead
end, observable for the first time).

What I'd do differently

Two honest lessons from shipping this:

OAuth is a bad default for a free tier. The original GSC
integration required users to create a Google Cloud project and an
OAuth client just to unlock the matrix view. For a plugin aimed at
WordPress site owners — not necessarily developers — that's a steep
ask, and it shows in support friction. I'm moving the free tier to a
simpler CSV-import flow and reserving live OAuth sync for the paid
edition.

Localization infrastructure has more layers than you'd guess.
WordPress.org's plugin UI strings and the plugin's directory
listing page
(the readme) are translated through completely
separate systems. I had the in-plugin UI fully localized into
Japanese while the public-facing listing page was silently still in
English — for over a week, with zero indication anything was wrong,
quietly costing conversions from non-English-speaking visitors who
landed on the page and bounced. If you're shipping a plugin for a
non-English-primary audience, check both translation projects
independently; don't assume one implies the other.

Try it

Free, open on the WordPress.org directory:
https://wordpress.org/plugins/edgeshaping-lite/

If you run a non-trivial amount of content and haven't checked your
raw logs for AI crawler traffic recently, I'd genuinely be curious
what gap you find. Mine was 9x. I don't think that's an outlier.