侧边栏壁纸
博主头像
爱运维 博主等级

行动起来,活在当下

  • 累计撰写 197 篇文章
  • 累计创建 143 个标签
  • 累计收到 21 条评论

目 录CONTENT

文章目录

nginx 日志之 log_format

Administrator
2017-01-10 / 0 评论 / 0 点赞 / 3 阅读 / 0 字
  nginx服务器日志相关指令主要有两条,一条是log_format,一般在http 段指定日志格式
  另外一条是access_log,用来指定日志文件的存放路径、格式和缓存大小,一般在server 段指定

日志参数:

    

$remote_addr, $http_x_forwarded_for #记录客户端IP地址
$remote_user                    #记录客户端用户名称
$request                        #记录请求的URL和HTTP协议
$status                         #记录请求状态
$body_bytes_sent                #发送给客户端的字节数,不包括响应头的大小
$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     #通用日志格式下的本地时间。
$remote_addr, $http_x_forwarded_for #记录客户端IP地址


nginx 配置:

http {
    ..........
    log_format main '$remote_addr - $remote_user [$time_local] "$request" '
      '"$http_referer" $status $body_bytes_sent '
      '"$http_user_agent" "$http_x_forwarded_for" $request_body $upstream_response_time $request_time';
      ................
}
server {
   ..................
    access_log  log/access_log main;   
    ..................
}




0

评论区