美文网首页
nginx 日志格式变量注释

nginx 日志格式变量注释

作者: langlyyy | 来源:发表于2021-07-15 14:40 被阅读0次
    变量 描述 示例
    $body_bytes_sent 发送给客户端文件主体内容大小 73
    $connection_requests TCP连接当前的请求数量 1
    $content_type "Content-Type" 请求头字段 application/x-www-form-urlencoded; charset=UTF-8
    $host 服务器名,请求来源的域名 tset.abc.com
    $http_referer 记录从那个页面链接访问过来的 https://tset1.abc.com/frontpage/mirrorFlow/fillFlow.html?tid=3032419000066947&userId=1156947
    $http_user_agent 客户端浏览器的相关信息 Mozilla/5.0 (iPhone; CPU iPhone OS 13_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 XMall/2.0.8 Language/zh WappBrowser/1.2.6 ChannelId/8 PlatformId/2 /third_channel
    $http_x_forwarded_for 设置有代理,该项设置为客户端IP地址,remote_addr则为代理的地址 131.136.41.63, 125.131.127.162
    $remote_addr 上游的地址 39.104.28.77
    $request 请求的url与http协议 (这里包含了 method、url 、http版本等信息) POST /service HTTP/1.1
    $request_body 客户端的请求主体 tid=30324000066&function=xiaohui.flow.surplus&sn=15388888828&app_id=21016&_sign=ADDD2140&user_id=888888&source=mall
    $request_time 处理客户端请求使用的时间,单位为秒,精度毫秒; 0.160
    $scheme 请求使用的Web协议,"http" 或 "https" https
    $status HTTP请求状态码 200
    $time_iso8601 iso8601标准格式下的本地时间 2020-04-20T11:41:49+08:00
    $upstream_addr 后台upstream的地址,即真正提供服务的主机地址 31.204.88.55:19509
    $upstream_response_time 请求过程中,upstream响应时间 0.106

    相关文章

      网友评论

          本文标题:nginx 日志格式变量注释

          本文链接:https://www.haomeiwen.com/subject/pigeultx.html