$remote_addr, $http_x_forwarded_for 記錄客戶端ip位址
$remote_user 記錄客戶端使用者名稱
$request 記錄請求的url和http協議
$status 記錄請求狀態
$body_bytes_sent 傳送給客戶端的位元組數,不包括響應頭的大小; 該變數與apache模組mod_log_config裡的「%b」引數相容。
$bytes_sent 傳送給客戶端的總位元組數。
$connection 連線的序列號。
$connection_requests 當前通過乙個連線獲得的請求數量。
$msec 日誌寫入時間。單位為秒,精度是毫秒。
$pipe 如果請求是通過http流水線(pipelined)傳送,pipe值為「p」,否則為「.」。
$http_referer 記錄從哪個頁面鏈結訪問過來的
$http_user_agent 記錄客戶端瀏覽器相關資訊
$request_length 請求的長度(包括請求行,請求頭和請求正文)。
$request_time 請求處理時間,單位為秒,精度毫秒; 從讀入客戶端的第乙個位元組開始,直到把最後乙個字元傳送給客戶端後進行日誌寫入為止。
$time_iso8601 iso8601標準格式下的本地時間。
$time_local 通用日誌格式下的本地時間。
1.access_log指令
語法:
access_log path [format [buffer=size [flush=time]]];
access_log path format gzip[=level] [buffer=size] [flush=time];
access_log syslog:server=address[,parameter=value] [format];
access_log off;
預設值: access_log logs/access.log combined;
配置段: http, server, location, if in location, limit_except
gzip壓縮等級。
buffer設定記憶體快取區大小。
flush儲存在快取區中的最長時間。
不記錄日誌:access_log off;
使用預設combined格式記錄日誌:access_log logs/access.log 或 access_log logs/access.log combined;
2.log_format指令
語法: log_format name string …;
預設值: log_format combined 「…」;
配置段: http
3.open_log_file_cache指令
語法: open_log_file_cache max=n [inactive=time] [min_uses=n] [valid=time];
open_log_file_cache off;
預設值: open_log_file_cache off;
配置段: http, server, location
對於每一條日誌記錄,都將是先開啟檔案,再寫入日誌,然後關閉。可以使用open_log_file_cache來設定日誌檔案快取(預設是off),格式如下:
引數注釋如下:
max:設定快取中的最大檔案描述符數量,如果快取被佔滿,採用lru演算法將描述符關閉。
inactive:設定存活時間,預設是10s
min_uses:設定在inactive時間段內,日誌檔案最少使用多少次後,該日誌檔案描述符記入快取中,預設是1次
valid:設定檢查頻率,預設60s
off:禁用快取
例項如下:
open_log_file_cache max=1000 inactive=20s valid=1m min_uses=2;
4. log_not_found指令
語法: log_not_found on | off;
預設值: log_not_found on;
配置段: http, server, location
是否在error_log中記錄不存在的錯誤。預設是。
5. log_subrequest指令
語法: log_subrequest on | off;
預設值: log_subrequest off;
配置段: http, server, location
是否在access_log中記錄子請求的訪問日誌。預設不記錄。
6. rewrite_log指令
由ngx_http_rewrite_module模組提供的。用來記錄重寫日誌的。對於除錯重寫規則建議開啟。 nginx重寫規則指南
語法: rewrite_log on | off;
預設值: rewrite_log off;
配置段: http, server, location, if
啟用時將在error log中記錄notice級別的重寫日誌。
7. error_log指令
語法:
error_log file | stderr | syslog:server=address[,parameter=value] [debug | info | notice | warn | error | crit | alert | emerg];
預設值: error_log logs/error.log error;
配置段: main, http, server, location
Nginx 八 優化日誌寫入
在nginx logs下有個access.log,每次請求成功都會寫入一條日誌,這顯然會增加磁碟的壓力。配置間隔多長的時間再一次性寫入 在http段加入 flush 1m 當產生第一條資料後過了一分鐘才寫入。buffer 32k 是當快取到多少k時才寫入,我測了差不多四百條。當設定了buffer f...
nginx系列 八 nginx失效轉移與超時處理
處理辦法 反向 將apache更換成nginx,推送伺服器只有乙個唯讀json介面,切換後除錯方便,出錯概率極低。失效策略 伺服器500錯誤的參考文章 如果後端tomcat伺服器處理超時,則nginx不請求下乙個tomcat節點,而是直接返回。nginx預設,會重複嘗試所有的節點以後,才會返回給瀏覽...
nginx(四)初識nginx日誌檔案
nginx 日誌相關指令主要有兩條,一條是log format,用來設定日誌格式,另外一條是access log,用來指定日誌檔案的存放路徑 格式和快取大小,通俗的理解就是先用log format來定義自己想用的日誌格式,然後在用zccess log定義虛擬主機時或全域性日誌時 在把定義的log f...