Nginx日誌格式設定
一、訪問日誌
nginx伺服器日誌相關指令主要有兩條,一條是log_format
,用來設定日誌格式,另外一條是access_log
,用來指定日誌檔案的存放路徑、格式和快取大小,一般在nginx的配置檔案中日記配置(/usr/local/nginx/conf/nginx.conf
)。
nginx的log_format
有很多可選的引數用於指示伺服器的活動狀態,預設的是:
log_format access `$remote_addr - $remote_user [$time_local] "$request" ` `$status $body_bytes_sent "$http_referer" ` `"$http_user_agent" "$http_x_forwarded_for"`;
想要記錄更詳細的資訊需要自己設定log_format,具體可設定的引數格式及說明如下:
引數 | 說明 | 示例 |
$remote_addr | 客戶端地址 | 211.28.65.253 |
$remote_user | 客戶端使用者名稱稱 | – |
$time_local | 訪問時間和時區 | 18/Jul/2012:17:00:01 +0800 |
$request | 請求的URI和HTTP協議 | “GET /article-10000.html HTTP/1.1” |
$http_host | 請求地址,即瀏覽器中你輸入的地址(IP或域名) | www.it300.com/192.168.100.100 |
$status | HTTP請求狀態 | 200 |
$upstream_status | upstream狀態 | 200 |
$body_bytes_sent | 傳送給客戶端檔案內容大小 | 1547 |
$http_referer | url跳轉來源 | https://www.baidu.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.10.10.100:80 |
$request_time | 整個請求的總時間 | 0.205 |
$upstream_response_time | 請求過程中,upstream響應時間 | 0.002 |
舉例說明如下:
1、配置檔案
#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_addr" "$upstream_status" "$upstream_response_time" "$request_time"`; include /usr/local/nginx/conf/vhost/*.conf;
2、vhost中配置檔案
#vim /usr/local/nginx/conf/vhost/web.confserver { listen 80 default; server_name www.it300.com; index index.html index.htm index.php; root /data/httpd/it300.com; location ~ .*.php?$ { include fastcgi.conf; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; } location ~ .*.(gif|jpg|jpeg|png|bmp|swf)$ { expires 30d; } location ~ .*.(js|css)?$ { expires 1h; } access_log /data/logs/it300.com.log access; }
二、錯誤日誌
錯誤日誌主要記錄客戶端訪問Nginx出錯時的日誌格式不支援自定義。通過錯誤日誌你可以得到系統某個服務或server的效能瓶頸等。因此將日誌好好利用你可以得到很多有價值的資訊。
錯誤日誌由指令error_log來指定具體格式如下
error_log path(存放路徑) level(日誌等級)
path含義同access_loglevel表示日誌等級具體如下
[ debug | info | notice | warn | error | crit ]
從左至右日誌詳細程度逐級遞減即debug最詳細crit最少。
舉例說明如下
error_log logs/error.log info;
需要注意的是error_log off並不能關閉錯誤日誌而是會將錯誤日誌記錄到一個檔名為off的檔案中。
正確的關閉錯誤日誌記錄功能的方法如下
error_log /dev/null;
上面表示將儲存日誌的路徑設定為“垃圾桶”。
— 2018-06-13 新增 —
nginx原始碼提供兩種形式的時間格式
1、[$time_local] 展現形式:[13/Jun/2018:13:50:48 +0800] 2、[$time_iso8601] 展現形式:[2018-06-13T13:50:26+08:00]
本文轉自:http://www.it300.com/article-15353.html、https://blog.csdn.net/u013474436/article/details/51317099
相關文章
- Nginx 訪問日誌格式設定Nginx
- 自定義Nginx日誌格式Nginx
- Nginx配置中的log_format用法梳理(設定詳細的日誌格式)NginxORM
- 如何定時切割nginx日誌?Nginx
- Nginx日誌配置Nginx
- nginx切割日誌Nginx
- nginx日誌切割Nginx
- nginx 清空日誌Nginx
- 日誌傳送事務日誌備份設定
- 設定Spark日誌級別Spark
- 重做日誌大小的設定
- Postgresql日誌歸檔設定SQL
- 設定mybatis 是否列印日誌MyBatis
- SVN提交日誌模板設定
- Nginx日誌輪訓Nginx
- nginx日誌切割配置Nginx
- nginx日誌處理Nginx
- 【RAC】RAC環境下歸檔日誌格式約定
- CentOS 7.0下nginx實現每天定時分割日誌CentOSNginx
- SecureCRT設定自動日誌方法Securecrt
- 修改nginx原始碼改變訪問日誌的時間格式薦Nginx原始碼
- binlog日誌的格式
- [elk]基於elk的業務日誌格式設計
- Nginx日誌配置詳解Nginx
- 按日期分割nginx日誌Nginx
- nginx日誌分析工具goaccessNginxGo
- eclipse設定檢視GC日誌和如何理解GC日誌EclipseGC
- Nginx訪問日誌、Nginx日誌切割、靜態檔案不記錄日誌和過期時間Nginx
- 日誌服務之使用Nginx模式採集日誌Nginx模式
- django 專案日誌記錄設定Django
- 【Oracle】歸檔日誌管理-設定歸檔日誌路徑以及歸檔日誌冗餘Oracle
- 004 Nginx日誌挖掘accessLogNginx
- Nginx 日誌分析及效能排查Nginx
- nginx日誌分割小指令碼Nginx指令碼
- Nginx日誌分析解決方案Nginx
- 使用goaccess統計nginx日誌GoNginx
- Apche日誌系列(3):定製日誌(轉)
- keepalived(五)設定單獨的日誌