nginx快取命中率統計(proxy_cache)
一.對nginx快取命中率的統計的配置:
nginx 提供了變數$upstream-cache-status 來顯示快取的命中狀態,我們可以再nginx.conf配置中新增一個http響應頭來顯示這一狀態,可以達到類似squid的效果,如下:
location ~* ^.*\.(js|ico|gif|jpg|jpeg|png)$ {
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_connect_timeout 180;
proxy_send_timeout 180;
proxy_read_timeout 180;
proxy_buffer_size 128k;
proxy_buffers 4 128k;
proxy_busy_buffers_size 128k;
proxy_temp_file_write_size 128k;
proxy_cache cache;
proxy_cache_valid 200 304 1h;
proxy_cache_valid 404 1m;
proxy_cache_key $host$uri$is_args$args;
add_header
Nginx-Cache
proxy_pass http://backend;
}
修改完nginx.conf 後儲存並重啟nginx。
二.快取的命中狀態檢視:
開啟瀏覽器 按下F12 輸入地址 192.168.2.162/zrq.png 如圖:
Nginx-cache ”HIT’ 快取命中
為了能夠統計快取的命中率,我們需要在日誌中記錄這一狀態:
log_format main ‘$remote_addr – $remote_user [$time_local] “$request” ‘
‘$status $body_bytes_sent “$http_referer” ‘
’”$http_user_agent” “$http_x_forwarded_for”‘
’”$upstream_cache_status”‘;
三. 統計方法:用HIT的數量除以日誌總量得出快取命中率:
命令: awk ’{if($NF==”\”HIT\”") hit++} END {printf “%.2f%”,hit/NR}’ access.log
結果: 32.15%
awk 命令不熟悉的話可以到百度上查下。
$upstream_cache-status
1. MISS 未命中,請求被傳送到後臺處理
2. HIT 快取命中
3. EXPIRED 快取已經過期,請求被傳送到後臺處理
4. UPDATING 正在更新快取,將使用舊的應答
5. STALE 後端得到過期的應答
四. 統計日誌指令碼:
# crontab -l
1 0 * * * /opt/shell/nginx_cache_hit >> /usr/local/openresty/nginx/logs/hit
# cat /opt/shell/nginx_cache_hit
#!/bin/bash
LOG_FILE=’/usr/local/nginx/logs/access.log.1′
LAST_DAY=$(date +%F -d “-1 day”)
awk ‘{if($NF==”\”HIT\”") hit++} END {printf “‘$LAST_DAY’: %d %d %.2f%\n”, hit,NR,hit/NR}’ $LOG_FILE