写点什么

Linux 下玩转 nginx 系列(三)---nginx 日志配置文件说明

作者:anyRTC开发者
  • 2022 年 3 月 15 日
  • 本文字数:4139 字

    阅读完需:约 14 分钟

nginx 日志共三个参数。


access_log: 定义日志的路径及格式。


log_format: 定义日志的模板。


open_log_file_cache: 定义日志文件缓存。

nginx access 日志配置

access_log 日志配置

access_log 用来定义日志级别,日志位置。语法如下:日志级别: debug > info > notice > warn > error > crit > alert > emerg


语法格式: access_log path [format [buffer=size] [gzip[=level]][flush=time] [if=condition]];access_log off;默认值 : access_log logs/access.log combined;作用域 : http, server, location, if inlocation, limit_except


• path 指定日志的存放位置。


• format 指定日志的格式。默认使用预定义的 combined。


• buffer 用来指定日志写入时的缓存大小。默认是 64k。


• gzip 日志写入前先进行压缩。压缩率可以指定,从 1 到 9 数值越大压缩比越高,同时压缩的速度也越慢。默认是 1。


• flush 设置缓存的有效时间。如果超过 flush 指定的时间,缓存中的内容将被清空。


• if 条件判断。如果指定的条件计算为 0 或空字符串,那么该请求不会写入日志。


另外,还有一个特殊的值 off。如果指定了该值,当前作用域下的所有的请求日志都被关闭。


示例:


基本用法


access_log /var/logs/nginx-access.log


该例子指定日志的写入路径为/var/logs/nginx-access.log,日志格式使用默认的 combined。


access_log /var/logs/nginx-access.log buffer=32k gzip flush=1m


该例子指定日志的写入路径为/var/logs/nginx-access.log,日志格式使用默认的 combined,指定日志的缓存大小为 32k,日志写入前启用 gzip 进行压缩,压缩比使用默认值 1,缓存数据有效时间为 1 分钟。

log_format 定义日志格式

语法格式: log_format name [escape=default|json] string ...;默认值 : log_format combined "...";作用域 : http


• name 格式名称。在 access_log 指令中引用。


• escape 设置变量中的字符编码方式是 json 还是 default,默认是 default。


• string 要定义的日志格式内容。该参数可以有多个。参数中可以使用 Nginx 变量。


示例:


access_log /var/logs/nginx-access.log main log_format main'remote_user [request"' 'body_bytes_sent "http_referer"' '"http_user_agent""$http_x_forwarded_for"';


我们使用 log_format 指令定义了一个 main 的格式,并在 access_log 指令中引用了它。假如客户端有发起请求:https://suyunfe.com/,我们看一下我截取的一个请求的日志记录:


124.78.32.26 - - [12/Mar/2022:22:18:20 +0800] "GET / HTTP/1.1" 200 569 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51Safari/537.36" "-"


我们看到最终的日志记录中http_referer、$http_x_forwarded_for 都对应了一个-,这是因为这几个变量为空。

设置 error_log

错误日志在 Nginx 中是通过 error_log 指令实现的。该指令记录服务器和请求处理过程中的错误信息。


  • 语法配置错误日志文件的路径和日志级别。


error_log file [level];Default: error_log logs/error.log error;


第一个参数指定日志的写入位置。第二个参数指定日志的级别。level 可以是 debug, info, notice, warn, error, crit, alert,emerg 中的任意值。可以看到其取值范围是按紧急程度从低到高排列的。只有日志的错误级别等于或高于 level 指定的值才会写入错误日志中。默认值是 error。


  • 基本用法


error_log /var/logs/nginx/nginx-error.log


它可以配置在:main, http, mail, stream, server, location 作用域。例子中指定了错误日志的路径为:/var/logs/nginx/nginx-error.log,日志级别使用默认的 error。

常见的日志变量

http_x_forwarded_for 记录客户端 IP 地址。


• $remote_user 记录客户端用户名称。


• $request 记录请求的 URL 和 HTTP 协议(GET,POST,DEL,等)。


• $status 记录请求状态。


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


• $bytes_sent 发送给客户端的总字节数。


• $connection 连接的序列号。


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


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


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


• $http_referer 记录从哪个页面链接访问过来的。


• $http_user_agent 记录客户端浏览器相关信息。


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


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


• $time_iso8601 ISO8601 标准格式下的本地时间。


• $time_local 通用日志格式下的本地时间。

open_log_file_cache

使用 open_log_file_cache 来设置日志文件缓存(默认是 off)。


• max 设置缓存中的最大文件描述符数量,如果缓存被占满,采用 LRU 算法将描述符关闭。


• inactive 设置存活时间,默认是 10s。


• min_uses 设置在 inactive 时间段内,日志文件最少使用多少次后,该日志文件描述符记入缓存中,默认是 1 次。


• valid 设置检查频率,默认 60s。


• off 禁用缓存。


语法格式: 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 max=1000 inactive=20s valid=1m min_uses=2;


它可以配置在 http、server、location 作用域中。例子中,设置缓存最多缓存 1000 个日志文件描述符,20s 内如果缓存中的日志文件描述符至少被被访问 2 次,才不会被缓存关闭。每隔 1 分钟检查缓存中的文件描述符的文件名是否还存在。

nginx 日志调试技巧

设置 Nginx 仅记录来自于指定的 IP 的错误

当设置日志级别成 debug,如果在调试一个在线的高流量网站的话,错误日志可能会记录每个请求的很多消息,这样会变得毫无意义。在 events{...}中配置如下内容,可以使 Nginx 记录仅仅来自于指定的 IP 的错误日志。


events {debug_connection 1.2.3.4;}

调试 nginx rewrite 规则

调试 rewrite 规则时,如果规则写错只会看见一个 404 页面,可以在配置文件中开启 nginx rewrite 日志,进行调试。


server {error_log /var/logs/nginx/example.com.error.log;rewrite_log on;}


rewrite_log on; 开启后,它将发送所有的 rewrite 相关的日志信息到 error_log 文件中,使用 [notice] 级别。随后就可以在 error_log 查看 rewrite 信息了。

使用 location 记录指定 URL 的日志

server {error_log /var/logs/nginx/example.com.error.log;location /static/ {error_log /var/logs/nginx/static-error.log debug;}

}


配置以上配置后,/static/ 相关的日志会被单独记录在 static-error.log 文件中。

常用例子

main 格式

log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '                      '$status $body_bytes_sent "$http_referer" '                      '"$http_user_agent" "$http_x_forwarded_for"'                       '$upstream_addr $upstream_response_time $request_time ';access_log  logs/access.log  main;
复制代码

json 格式

log_format logstash_json '{"@timestamp":"$time_iso8601",'       '"host": "$server_addr",'       '"client": "$remote_addr",'       '"size": $body_bytes_sent,'       '"responsetime": $request_time,'       '"domain": "$host",'       '"url":"$request_uri",'       '"referer": "$http_referer",'       '"agent": "$http_user_agent",'       '"status":"$status",'       '"x_forwarded_for":"$http_x_forwarded_for"}';
复制代码


解释:


args),不同于浏览器传递的request_uri 这个变量等于包含一些客户端请求参数的原始 URI,它无法修改,请查看request_uri 是原始请求 URL,$uri 则是经过 nginx 处理请求后剔除参数的 URL,所以会将汉字表现为 union。


坑点:


使用request_uri 代替,如无特殊业务需求,完全可以替换。


压缩格式


日志中增加了压缩的信息。


http {    log_format compression '$remote_addr - $remote_user [$time_local] '                           '"$request" $status $body_bytes_sent '                           '"$http_referer" "$http_user_agent" "$gzip_ratio"';
server { gzip on; access_log /spool/logs/nginx-access.log compression; ... }}
复制代码


upstream 格式


增加 upstream 消耗的时间。


http {    log_format upstream_time '$remote_addr - $remote_user [$time_local] '                             '"$request" $status $body_bytes_sent '                             '"$http_referer" "$http_user_agent"'                             'rt=$request_time uct="$upstream_connect_time" uht="$upstream_header_time" urt="$upstream_response_time"';
server { access_log /spool/logs/nginx-access.log upstream_time; ... }}
复制代码

总结

Nginx 中通过 access_log 和 error_log 指令配置访问日志和错误日志,通过 log_format 我们可以自定义日志格式。如果日志文件路径中使用了变量,我们可以通过 open_log_file_cache 指令来设置缓存,提升性能。


另外,在 access_log 和 log_format 中使用了很多变量,这些变量没有一一列举出来,详细的变量信息可以参考 Nginx 官方文档

查看日志使用技巧

统计 status 出现的次数

awk '{print $9}' access.log | sort | uniq -c | sort -rn
36461 200 483 5009 4003 3021 4031 301
复制代码

显示返回 302 状态码的 URL

awk '($9 ~ /302/)' access.log | awk '{print $7}' | sort | uniq -c | sort -rn
1 /anyrtc.png1 /test.html
复制代码

参考文档

Nginx日志配置详解如何在Nginx中配置自定义访问和错误日志格式Full Example Configuration



发布于: 刚刚阅读数: 3
用户头像

实时交互,万物互联! 2020.08.10 加入

实时交互,万物互联,全球实时互动云服务商领跑者!

评论

发布
暂无评论
Linux下玩转nginx系列(三)---nginx日志配置文件说明_nginx_anyRTC开发者_InfoQ写作平台