nginx⽇志配置指令详解
⽇志对于统计排错来说⾮常有利的。本⽂总结了nginx⽇志相关的配置如access_log、log_format、open_log_file_cache、log_not_found、log_subrequest、rewrite_log、error_log。
nginx有⼀个⾮常灵活的⽇志记录模式。每个级别的配置可以有各⾃独⽴的访问⽇志。⽇志格式通过log_format命令来定义。ngx_http_log_module是⽤来定义请求⽇志格式的。
1. access_log指令
语法: access_log path [format [buffer=size [flush=time]]];
复制代码代码如下:
access_log path format gzip[=level] [buffer=size] [flush=time];
access_log syslog:server=address[,parameter=value] [format];
access_log off;
默认值: access_log logs/access.log combined;
配置段: http, server, location, if in location, limit_except
gzip压缩等级。
buffer设置内存缓存区⼤⼩。
flush保存在缓存区中的最长时间。
不记录⽇志:access_log off;
使⽤默认combined格式记录⽇志:access_log logs/access.log 或 access_log logs/access.log combined;
2. log_format指令
语法: log_format name string …;
默认值: log_format combined “…”;
配置段: http
name表⽰格式名称,string表⽰等义的格式。log_format有⼀个默认的⽆需设置的combined⽇志格式,相当于apache的combined⽇志格式,如下所⽰:
复制代码代码如下:
log_format combined '$remote_addr - $remote_user [$time_local] '
' "$request" $status $body_bytes_sent '
' "$http_referer" "$http_user_agent" ';
如果nginx位于负载均衡器,squid,nginx反向代理之后,web服务器⽆法直接获取到客户端真实的IP地址了。 $remote_addr 获取反向代理的IP地址。反向代理服务器在转发请求的http头信息中,可以增加X-Forwarded-For信息,⽤来记录客户端IP地址和客户端请求的服务器地址。如下所⽰:
复制代码代码如下:
log_format porxy '$http_x_forwarded_for - $remote_user [$time_local] '
' "$request" $status $body_bytes_sent '
' "$http_referer" "$http_user_agent" ';
⽇志格式允许包含的变量注释如下:
复制代码代码如下:
$remote_addr, $http_x_forwarded_for 记录客户端IP地址
$remote_user 记录客户端⽤户名称
$request 记录请求的URL和HTTP协议
$status 记录请求状态
$body_bytes_sent 发送给客户端的字节数,不包括响应头的⼤⼩;该变量与Apache模块mod_log_config⾥的“%B”参数兼容。
$bytes_sent 发送给客户端的总字节数。
$connection 连接的序列号。
nginx停止命令$connection_requests 当前通过⼀个连接获得的请求数量。
$msec ⽇志写⼊时间。单位为秒,精度是毫秒。
$pipe 如果请求是通过HTTP流⽔线(pipelined)发送,pipe值为“p”,否则为“.”。
$http_referer 记录从哪个页⾯链接访问过来的
$http_user_agent 记录客户端浏览器相关信息
$request_length 请求的长度(包括请求⾏,请求头和请求正⽂)。
$request_time 请求处理时间,单位为秒,精度毫秒;从读⼊客户端的第⼀个字节开始,直到把最后⼀个字符发送给客户端后进⾏⽇志写⼊为⽌。
$time_iso8601 ISO8601标准格式下的本地时间。
$time_local 通⽤⽇志格式下的本地时间。
发送给客户端的响应头拥有“sent_http_”前缀。⽐如$sent_http_content_range。
实例如下:
复制代码代码如下:
http {
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'"$status" $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for" '
'"$gzip_ratio" $request_time $bytes_sent $request_length';
log_format srcache_log '$remote_addr - $remote_user [$time_local] "$request" '
'"$status" $body_bytes_sent $request_time $bytes_sent $request_length '
'[$upstream_response_time] [$srcache_fetch_status] [$srcache_store_status] [$srcache_expire]';
open_log_file_cache max=1000 inactive=60s;
server {
server_name ~^(www\.)?(.+)$;
access_log logs/$2-access.log main;
error_log logs/$2-error.log;
location /srcache {
access_log logs/access-srcache.log srcache_log;
}
}
}
3. open_log_file_cache指令
语法: open_log_file_cache max=N [inactive=time] [min_uses=N] [valid=time];
open_log_file_cache off;
默认值: open_log_file_cache off;
配置段: http, server, location
对于每⼀条⽇志记录,都将是先打开⽂件,再写⼊⽇志,然后关闭。可以使⽤open_log_file_cache来设置⽇志⽂件缓存(默认是off),格式如下:
参数注释如下:
max:设置缓存中的最⼤⽂件描述符数量,如果缓存被占满,采⽤LRU算法将描述符关闭。
inactive:设置存活时间,默认是10s
min_uses:设置在inactive时间段内,⽇志⽂件最少使⽤多少次后,该⽇志⽂件描述符记⼊缓存中,默认是1次
valid:设置检查频率,默认60s
off:禁⽤缓存
实例如下:
复制代码代码如下:
open_log_file_cache max=1000 inactive=20s valid=1m min_uses=2;
4. log_not_found指令
语法: log_not_found on | off;
默认值: log_not_found on;
配置段: http, server, location
是否在error_log中记录不存在的错误。默认是。
5. log_subrequest指令
语法: log_subrequest on | off;
默认值: log_subrequest off;
配置段: http, server, location
是否在access_log中记录⼦请求的访问⽇志。默认不记录。
6. rewrite_log指令
由ngx_http_rewrite_module模块提供的。⽤来记录重写⽇志的。对于调试重写规则建议开启。 Nginx重写规则指南
语法: rewrite_log on | off;
默认值: rewrite_log off;
配置段: http, server, location, if
启⽤时将在error log中记录notice级别的重写⽇志。
7. error_log指令
语法: error_log file | stderr | syslog:server=address[,parameter=value] [debug | info | notice | warn | error | crit | alert | emerg];默认值: error_log logs/error.log error;
配置段: main, http, server, location
配置错误⽇志。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论