如何在 awstats 7.0 中跟踪 jpg 点击量作为页面浏览量
我已经设置了 awstats 来读取 cloudfront 日志文件,并且我需要能够生成特定文件点击率的报告,这些文件是用于横幅的图像。我更改了“NotPageList”选项以排除图像文件,并删除了 awstats*.txt 数据文件并运行了新的更新,但 jpg 图像仍然不计为页面。我需要做什么才能使其正常工作?
LogFile="/var/log/cloudfront-logs/mydomain.log"
LogFormat="%time2 %cluster %bytesd %host %method %virtualname %url %code %referer %ua %query"
LogSeparator="\t"
SiteDomain="d2fxxxxxx.cloudfront.net"
HostAliases="d2fxxxxxx.cloudfront.net"
NotPageList="css js class bmp ico rss xml swf"
DecodeUA=1
I've setup awstats to read cloudfront log files and I need to be able to generate reports for hits on specific files, which are images used for banners. I changed "NotPageList" options to exclude the image files and I deleted the awstats*.txt data files and ran a fresh -update but the jpg images are still not counted as pages. What do I need to do to get this working?
LogFile="/var/log/cloudfront-logs/mydomain.log"
LogFormat="%time2 %cluster %bytesd %host %method %virtualname %url %code %referer %ua %query"
LogSeparator="\t"
SiteDomain="d2fxxxxxx.cloudfront.net"
HostAliases="d2fxxxxxx.cloudfront.net"
NotPageList="css js class bmp ico rss xml swf"
DecodeUA=1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来对于请求成为由 awstats 中的 mime 类型确定的“页面”有一个额外的标准,但没有记录。因此,为了修复我的本地安装的这个问题,我修改了代码以删除此 mime 类型测试。
AWStats 7.0 版本 1.971 awstats.pl 第 18219 行
之前:
之后:
Looks like there is an additional criteria for a request to be a "page" determined by mime type in awstats which is not documented.. So, to fix this for my local install I hacked the code to remove this mime type test.
AWStats 7.0 build 1.971 awstats.pl line 18219
Before:
After: