加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 运营中心 > Nginx > 正文

Nginx combined 日志参数记录

发布时间:2020-12-13 21:42:39 所属栏目:Nginx 来源:网络整理
导读:因为lnmp现在默认不自定义设置log格式,使用了combined默认格式,记录一下。 '$remote_addr - $remote_user [$time_local] '' "$request" $status $body_bytes_sent '' "$http_referer" "$http_user_agent" '; 参数解释: $remote_addr,$http_x_forwarded_fo

因为lnmp现在默认不自定义设置log格式,使用了combined默认格式,记录一下。

'$remote_addr - $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 发送给客户端的字节数,不包括响应头的大小。
$http_referer 记录从哪个页面链接访问过来的。
$http_user_agent 记录客户端浏览器相关信息。
$bytes_sent 发送给客户端的总字节数。
$connection 连接的序列号。
$connection_requests 当前通过一个连接获得的请求数量。
$msec 日志写入时间。单位为秒,精度是毫秒。
$pipe 如果请求是通过HTTP流水线(pipelined)发送,pipe值为“p”,否则为“.”。
$request_length 请求的长度(包括请求行,请求头和请求正文)。
$request_time 请求处理时间,单位为秒,精度毫秒。
$time_iso8601 ISO8601标准格式下的本地时间。
$time_local 通用日志格式下的本地时间。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读