1. 程式人生 > >nginx日誌格式說明

nginx日誌格式說明

nginx日誌格式

默認的nginx日誌格式:

log_format access '$remote_addr - $remote_user [$time_local] "$request" '

'$status $body_bytes_sent "$http_referer" '

'"$http_user_agent" "$http_x_forwarded_for"';

access_log /usr/local/nginx/logs/access.log access;

1、更改默認nginx日誌格式 部分配置文件如下

#vim /usr/local/nginx/conf/nginx.conf

log_format access '$remote_addr - $remote_user[$time_local] "$request" '

'$status $body_bytes_sent "$http_referer" '

'" $http_user_agent" "$http_x_forwarded_for"'

'"$upstream_cache_status" "$upstream_addr" "$request_time" $upstream_response_time $http_host';

access_log /usr/local/nginx/logs/access.log access;

}

include /usr/local/nginx/conf/vhost/*.conf; #這個是包括虛擬主機的目錄

2、日誌格式說明

$remote_addr 與$http_x_forwarded_for 用以記錄客戶端的ip地址;

$remote_user : 用來記錄客戶端用戶名稱;

$time_local : 用來記錄訪問時間與時區;

$request : 用來記錄請求的url與http協議;

$status : 用來記錄請求狀態;成功是200,

$body_bytes_sent : 記錄發送給客戶端文件主體內容大小;

$http_referer : 用來記錄從那個頁面鏈接訪問過來的;

$http_user_agent : 記錄客戶端瀏覽器的相關信息;

$http_host : 請求地址,即瀏覽器中你輸入的地址(IP或域名)

$upstream_status upstream狀態 成功是200

$body_bytes_sent 發送給客戶端文件內容大小

$ssl_protocol SSL協議版本

$ssl_cipher 交換數據中的算法

$upstream_addr 後臺upstream的地址,即真正提供服務的主機地址

$request_time 整個請求的總時間

$upstream_response_time 請求過程中,upstream響應時間


nginx日誌格式說明