Skip to content
[menu][close]

FOUNDRYNETNo. 001SEPTEMBER 2026MONITORING

AI Agent Traffic: When a Browser Drives Itself

Crawlers fetch pages; agents use them. An agent opens a real browser, logs in, fills forms and clicks through a task on someone's behalf, which makes it look far more like a person than any crawler ever did.

Duotone plate of rows of dots flowing like packet streams, most irregularly spaced, two perfectly regular machine-like rows marked in hot pink.
PlateNetwork Monitoring Guide
On this page

01 Crawler, fetcher, agent

The network monitoring section already covers crawlers, which walk a site to copy it, and answer-engine fetchers, which pull a few pages to summarise them. A third client class has arrived: the agent. An agent is a language model given a browser and a goal ("book the 9:40 train", "download last month's invoice") that clicks and types its way through a site to reach it. Its traffic is closer to a human session than to a crawl, and most of the old heuristics fail on it.

Agents inherit the browser's fingerprint, which is why asset and JavaScript checks stop working.
ClientLoads assetsRuns JavaScriptLogs inTypical session
Index crawlerRarelySometimes, in a second passNoThousands of URLs, no state
Answer fetcherNoRarelyNoA handful of URLs per question
AgentYesYesOftenOne task: a short, purposeful path with form posts

02 What agent sessions look like

On the wire an agent session is a normal TLS connection from a real browser engine, so the ClientHello and HTTP/2 settings match a mainstream browser. The differences show up in behaviour and origin. Paths are linear: the agent goes straight from landing page to search to result to form, without the back-and-forth of a person comparing options. Time between actions is regular and short, then pauses for several seconds while the model decides. Sessions often start from cloud provider address space rather than residential or mobile networks. Pointer movement, where a site measures it, is absent or synthetic. The fingerprinting methods for automated clients describe the individual signals; for agents, the session is the unit to score.

A typical agent taskA TYPICAL AGENT TASK01Land onhomepage02Search ornavigate03Open oneresult04Fill and posta form05Confirm andleaveA typical agent taskA TYPICAL AGENT TASK01Land on homepage02Search or navigate03Open one result04Fill and post a form05Confirm and leave
Few pages, no browsing detours, one state-changing action at the end.

03 Measuring it

Count agent sessions, not agent requests. Build sessions from balancer or application logs keyed on the session cookie, then flag those with a datacentre origin, a linear path and uniform think time. Compare the conversion events (logins, posts, purchases) in flagged sessions with the rest. The numbers matter because agent traffic concentrates on exactly the endpoints that change state, where a scripted mistake or abuse costs most. Packet sampling with sFlow will not see any of this; it lives above TLS.

04 Declared agents and signed requests

Some agent operators now identify their traffic. The first generation used a user-agent string, which anyone can copy. The emerging approach signs each request with a key the operator publishes, using HTTP Message Signatures (RFC 9421); the IETF Web Bot Auth working group is standardising how a site discovers and checks those keys. A signed request proves which operator sent it, though not which user asked for the task. The guide to verifying bots with HTTP message signatures walks through the check.

05 Setting policy per action

Because agents act for real users, blocking them wholesale can break legitimate use: a person who asked an assistant to download their own invoice is still a customer. Set rules per action instead. Reading public pages is usually fine. Logging in may be allowed for declared, verified agents. Purchases, password changes and bulk exports deserve a step a model cannot complete alone, such as a one-time code sent to the account holder. Rate-limit form posts per session and per origin network, the same token-bucket approach as rate limiting crawlers at the balancer, but applied to state-changing endpoints.

OPERATOR NOTE

An agent that fails a task tends to retry the same form many times in a row. Alert on repeated identical posts from one session; it catches broken agents and scripted abuse alike.

Referral data completes the picture. Visits that arrive after an assistant cited your page are a different stream again, covered in measuring referral traffic from AI answers.

06 Questions

What is AI agent traffic?

Traffic from a language model driving a browser to complete a task for a user, such as filling a form or finding a document. It loads pages like a person, so crawler heuristics do not catch it.

How is an AI agent different from a crawler?

A crawler copies pages in bulk and keeps no state. An agent follows a short, purposeful path, runs JavaScript, may log in and usually ends by changing something, such as submitting a form.

Can I detect AI agents from TLS fingerprints?

Rarely, because most agents drive a mainstream browser engine with a normal fingerprint. Session behaviour and origin network are more useful, and signed requests are the reliable signal where operators provide them.

Should I block AI agents?

Block by action, not by client class. Reading is usually harmless; purchases, account changes and bulk exports deserve a step that needs the real user.

Does sFlow show agent traffic?

Only as ordinary HTTPS volume from an address. Identification needs balancer or application logs above TLS.