本文主要是介绍nginx日志参数定义,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
log_format main '$remote_addr|$time_local|$request|'
'$status|$body_bytes_sent|$http_referer|'
'$http_x_forwarded_for|'
'$upstream_addr|$upstream_status|$request_time|$upstream_response_time';
access_log logs/access.log main;
参数 | 含义 |
---|
$remote_addr | 客户端地址 |
$time_local | 访问时间和时区 |
$request | 请求的URI和HTTP协议 |
$status | HTTP请求状态 |
$boby_byes_sent | 发送client文件内容大小 |
$http_referer | URL跳转来源 |
$http_x_fotwarded_for | 请求端client真实地址 |
$upstream_addr | 后台真正提供服务主机地址 |
$upstream_status | upstream状态 |
$request_time | 整个请求总时间 |
$upstream_respnse_time | 请求中,upstream响应时间 |
这篇关于nginx日志参数定义的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!