标签:nginx日志
有关nginx日志分析的一点记录
蓝鹰 | CentOS | 2014-09-25
由于网站需要进行防止内容抓取,就要对各大引擎的user-agent进行判断,自己搜索了一下
各大搜索引擎的User-agent
google (Googlebot)
baidu (Baiduspider)
soso (Sosospider)
sogou (Sogou web spider)
yahoo (Yahoo! Slurp China)
bing (bingbot)
nginx日志格式:
默认格式:
log_format combined '$remote_addr - $remote_user [$time_loc... [阅读全文]
从nginx日志中统计nginx缓存命中率
蓝鹰 | CentOS | 2013-10-17
要统计nginx的缓存,前提肯定是你已经配置了nginx的缓存,然后需要在日志中输出缓存的状态,如下日志格式配置:
可以看到日志中最后一个项是缓存状态。
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_... [阅读全文]