首页 > 网站 > Nginx > 正文

nginx日志模块及日志定时切割的方法

2024-08-30 12:25:02
字体:
来源:转载
供稿:网友

一:作用

Ngx_http_log_module:定义日志格式,并且以指定的格式保存。

二:示例配置

log_format compression '$remote_addr - $remote_user [$time_local] '            '"$request" $status $bytes_sent '            '"$http_referer" "$http_user_agent" "$gzip_ratio"';access_log /spool/logs/nginx-access.log compression buffer=32k;

三:access_log

句法: access_log path [format [buffer=size] [gzip[=level]] [flush=time] [if=condition]];

access_log off;

默认: access_log logs / access.log合并;

语境: http,server,location,if in location,limit_except

1:[buffer=size]

设置缓冲日志写入的路径,格式和配置。

2:gzip[=level]

如果使用该 gzip 参数,则在写入文件之前,缓冲的数据将被压缩。 压缩级别可以设置在1(最快,较少压缩)和9(最慢,最佳压缩)之间。 默认情况下,缓冲区大小等于64K字节,压缩级别设置为1.由于数据是以原子块压缩的,因此日志文件可以随时解压或由“  zcat ”  读取 。

3:[flush=time]

保存在缓存区中的最长时间。

四:log_format

指定日志格式

log_format compression '$remote_addr - $remote_user [$time_local] '            '"$request" $status $bytes_sent '            '"$http_referer" "$http_user_agent" "$gzip_ratio"';

1:remote_addr, $http_x_forwarded_for 记录客户端IP地址

2:remote_user 记录客户端用户名称

3:request 记录请求的URL和HTTP协议

4:status 记录请求状态

5:body_bytes_sent 发送给客户端的字节数,不包括响应头的大小; 该变量与Apache模块mod_log_config里的“%B”参数兼容。

6:bytes_sent 发送给客户端的总字节数。

7:connection 连接的序列号。

8:connection_requests 当前通过一个连接获得的请求数量。

9:msec 日志写入时间。单位为秒,精度是毫秒。

10:pipe 如果请求是通过HTTP流水线(pipelined)发送,pipe值为“p”,否则为“.”。

11:http_referer 记录从哪个页面链接访问过来的

12:http_user_agent 记录客户端浏览器相关信息

13:request_length 请求的长度(包括请求行,请求头和请求正文)。

14:request_time 请求处理时间,单位为秒,精度毫秒; 从读入客户端的第一个字节开始,直到把最后一个字符发送给客户端后进行日志写入为止。

15:time_iso8601 ISO8601标准格式下的本地时间。

16:time_local 通用日志格式下的本地时间。

五: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

作用:定义一个缓存,用于存储名称中包含变量的常用日志的文件描述符。该指令具有以下参数:

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表