TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: static files(on server) analytics?

2 pointsby thomasswiftover 16 years ago
I have a few sites one running apache and on nginx. Does anyone have any tips or techniques for parsing the log files for gathering analytics on what files are being downloaded from straight direct requests?<p>I ask because I use google analytics, which satisfies my analytics needs for regular site interaction, but would like to watch on pure file requests.

3 comments

noodleover 16 years ago
awstats will, i <i>think</i>, fit your needs.
utnickover 16 years ago
cat access.log | grep staticfilename | wc -l
thomasswiftover 16 years ago
thanks guys