

Open the view
Click the magnifying-glass icon next to any domain. cPanel renders the last 1,000 access log entries for that domain, newest first.| Column | What it shows |
|---|---|
| URL | The path requested. Click to open it in a new tab. |
| HTTP Code | The status code Apache returned (200, 301, 404, 500, etc). |
| Size | Response body size in bytes. 0 means a 304 or empty body. |
| Referrer | The page the visitor came from. Often blank or -. |
| Time | Server time the request was logged. |
| User Agent | Browser or bot string the client sent. |
| Host | The visitor’s IP, plus reverse-DNS hostname when one exists. |
What it’s good for
- Spot a misbehaving bot. Filter by user agent and you’ll see scrapers hammering one URL.
- Confirm a redirect chain works. Trigger the redirect, refresh the visitor list, see the 301 → 200 sequence.
- Find the IP behind a complaint. “User reports a 500 on /checkout at 14:32” is one row away.
What it’s not
- Not real-time. There’s a small lag (under a minute) while the log buffer flushes.
- Not historical. Beyond the last 1,000 hits the data lives in Raw Access.
- Not security-only. The list includes all traffic, not just suspicious requests. For abuse triage, look at the error log too.
Common issues
The list is empty even though the site is live
The list is empty even though the site is live
The log was rotated within the last hour and no new requests have been logged yet. Hit the site once from a private window to confirm. If it’s still empty, check that DNS for the domain points to the server.
The same IP is hitting hundreds of URLs per minute
The same IP is hitting hundreds of URLs per minute
Either a search engine crawl (check the user agent: Googlebot, Bingbot, etc.), or an abuse scan. For a real bot you don’t recognize, block the IP via IP Blocker or open a support ticket.
User Agent shows my own name or 'curl/8.x'
User Agent shows my own name or 'curl/8.x'
That’s a script you ran against the site, not a real visitor. Filter it out mentally before drawing conclusions about traffic patterns.

