相关说明解释
1.$remote_addr 与$http_x_forwarded_for 用以记录客户端的ip地址;
2.$remote_user :用来记录客户端用户名称.已经经过Auth Basic Module验证的用户名。;
3.$time_local : 用来记录访问时间与时区;
4.$request : 用来记录请求的url与http协议,通常是HTTP/1.0或HTTP/1.1;
5.$status : 用来记录请求状态;成功是200,
6.$body_bytes_sent :记录发送给客户端文件主体内容大小;
7.$http_referer :用来记录从那个页面链接访问过来的;
8.$http_user_agent :记录客户端浏览器的相关信息;
9.$request_time :官网描述:request processing time in seconds with amilliseconds resolution; time elapsed between the first bytes were read fromthe client and the log write after the last bytes were sent to the client 。
指的就是从接受用户请求的第一个字节到发送完响应数据的时间,即包括接收请求数据时间、程序响应时间、输出响应数据时间。
10.$upstream_response_time:官网描述:keeps times of responses obtained fromupstream servers; times are kept in seconds with a milliseconds resolution.Several response times are separated by commas and colons like addresses in the$upstream_addr variable
是指从Nginx向后端(php-cgi)建立连接开始到接受完数据然后关闭连接为止的时间。
11.$http_cookie#客户端cookie信息
12.$host#请求主机头字段,否则为服务器名称。
13.$hostname#Set to the machine’s hostname asreturned by gethostname
14.$limit_rate#这个变量可以限制连接速率。
15.$request_method#客户端请求的动作,通常为GET或POST。
16.$request_filename#当前请求的文件路径,由root或alias指令与URI请求生成。
17.$request_uri#包含请求参数的原始URI,不包含主机名,如:”/foo/bar.php?arg=baz”。不能修改。
18.$scheme#HTTP方法(如http,https)。
19.$server_protocol#请求使用的协议,通常是HTTP/1.0或HTTP/1.1。
20.$server_addr#服务器地址,在完成一次系统调用后可以确定这个值。
21.$server_name#服务器名称。
22.$server_port#请求到达服务器的端口号。
23.$uri#不带请求参数的当前URI,$uri不包含主机名,如”/foo/bar.html”。该值有可能和$request_uri 不一致。$request_uri是浏览器发过来的值。该值是rewrite后的值。例如做了internal redirects后。
24.$args #这个变量等于请求行中(GET请求)的参数,例如foo=123&bar=blahblah;
25.$query_string#与$args相同。
26.$request_body_file#客户端请求主体信息的临时文件名。
27. $sent_http_x_cache : 如果架构中有varnish缓存的话,通过这个字段可以看出请求是否命中。