Nginx默认的访问日志格式(通常在nginx.conf中定义)如下:
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
# 统计访问量前10的IP
awk '{print $1}' access.log | sort | uniq -c | sort -nr | head -10
# 统计HTTP状态码
awk '{print $9}' access.log | sort | uniq -c | sort -rn
# 统计最频繁的URL请求
awk '{print $7}' access.log | sort | uniq -c | sort -rn | head -20
GoAccess是一个开源的实时Web日志分析工具:
# 安装
sudo apt-get install goaccess # Ubuntu/Debian
sudo yum install goaccess # CentOS/RHEL
# 基本使用
goaccess access.log -a
# 生成HTML报告
goaccess access.log -o report.html --log-format=COMBINED
AWStats是一个功能强大的日志分析工具:
示例Logstash配置:
input {
file {
path => "/var/log/nginx/access.log"
start_position => "beginning"
}
}
filter {
grok {
match => { "message" => "%{COMBINEDAPACHELOG}" }
}
date {
match => [ "timestamp", "dd/MMM/yyyy:HH:mm:ss Z" ]
}
}
output {
elasticsearch {
hosts => ["localhost:9200"]
}
}
log_format json_combined escape=json
'{'
'"time_local":"$time_local",'
'"remote_addr":"$remote_addr",'
'"remote_user":"$remote_user",'
'"request":"$request",'
'"status": "$status",'
'"body_bytes_sent":"$body_bytes_sent",'
'"http_referrer":"$http_referer",'
'"http_user_agent":"$http_user_agent",'
'"http_x_forwarded_for":"$http_x_forwarded_for",'
'"request_time":"$request_time"'
'}';
通过以上方法,您可以全面了解网站的访问情况,及时发现性能瓶颈和安全问题,为优化网站提供数据支持。