日志参数?
参数 | 说明 | 示例 |
$remote_addr | 客户端地址 | 219.227.111.255 |
$remote_user | 客户端用户名称 | — |
$time_local | 访问时间和时区 | 14/Dec/202023:09:27:01 +0800 |
$time_iso8601 | 访问时间 | 2023-12-14T09:27:45+08:00 |
$request | 请求的URI和HTTP协议 | “GET /article-10000.html HTTP/1.1” |
$request_uri | 请求除了域名以外的URI | |
$server_port | 请求服务地址的端口号 | |
$http_host | 请求地址,即浏览器中你输入的地址(IP或域名) | www.ha97.com;198.98.120.87 |
$status | HTTP请求状态 | 200 |
$upstream_status | upstream状态 | 200 |
$body_bytes_sent | 发送给客户端文件内容大小 | 1547 |
$http_referer | url跳转来源 | https://www.google.com/ |
$http_user_agent | 用户终端浏览器等信息 | “Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; GTB7.0; .NET4.0C; |
$ssl_protocol | SSL协议版本 | TLSv1 |
$ssl_cipher | 交换数据中的算法 | RC4-SHA |
$upstream_addr | 后台upstream的地址,即真正提供服务的主机地址 | 10.36.10.80:80 |
$request_time | 整个请求的总时间 | 0.165 |
$upstream_response_time | 请求过程中,upstream响应时间 | 0.002 |
?日志按照天配置生成方式
if ($time_iso8601 ~ "^(\d{4})-(\d{2})-(\d{2})") {
set $year $1;
set $month $2;
set $day $3;
}
#win环境下,路径分隔符要使用\\,不要会转译错误(有些用/也不会报错)
access_log logs\\host.access_$year-$month-$day.log main;;
#linux环境,正常写路径即可
access_log var/logs/location_8080_access_$year-$month-$day.log;
#因为if写法只能出现在server跟location中,需要定义map解决该问题
map $time_iso8601 $logdate {
'~^(?<ymd>\d{4}-\d{2}-\d{2})' $ymd;
default 'date-not-found';
}
#win环境下,路径分隔符要使用\\,不要会转译错误
access_log logs\\http_access_$logdate.log;
#linux环境,正常写路径即可
access_log var/logs/http_access_$logdate.log;