nginx缓存命中率统计_51CTO博客_nginx日志统计访问量

nginx缓存命中率统计

nginx缓存命中率统计

原创

darkyl 博主文章分类:架构 ©著作权

文章标签 统计 命中率 nginx、nginx缓存 文章分类 Nginx 服务器

©著作权归作者所有:来自51CTO博客作者darkyl的原创作品,请联系作者获取转载授权,否则将追究法律责任
nginx缓存命中率统计


nginx提供了$upstream_cache_status这个变量来显示缓存的状态,我们可以在配置中添加一个http头来显示这一状态,达到类似squid的效果。
  1.    location  / {

  2.        proxy_redirect          off;

  3.        proxy_set_header        Host            $host;

  4.        proxy_set_header        X-Real-IP       $remote_addr;

  5.        proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;

  6.        proxy_connect_timeout   180;

  7.        proxy_send_timeout      180;

  8.        proxy_read_timeout      180;

  9.        proxy_buffer_size       128k;

  10.        proxy_buffers           4 128k;

  11.        proxy_busy_buffers_size 128k;

  12.        proxy_temp_file_write_size 128k;

  13.        proxy_cache cache;

  14.        proxy_cache_valid 200 304 1h;

  15.        proxy_cache_valid 404 1m;

  16.        proxy_cache_key $uri$is_args$args;

  17.        add_header  Nginx-Cache "$upstream_cache_status";

  18.        proxy_pass http://backend;

  19.    }


  1. HTTP/1.1 200 OK

  2. Date: Mon, 22 Apr 2013 02:10:02 GMT

  3. Server: nginx

  4. Content-Type: p_w_picpath/jpeg

  5. Content-Length: 23560

  6. Last-Modified: Thu, 18 Apr 2013 11:05:43 GMT

  7. Nginx-Cache: HIT

  8. Accept-Ranges: bytes

  9. Vary: User-Agent


为了能够统计缓存的命中率,我们需要在日志中记录这一状态
  1. log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '

  2.                  '$status $body_bytes_sent "$http_referer" '

  3.                  '"$http_user_agent" "$http_x_forwarded_for"'

  4.                  '"$upstream_cache_status"';


统计方法:用HIT的数量除以日志总量得出缓存命中率:
  1. awk '{if($NF=="\"HIT\"") hit++} END {printf "%.2f%",hit/NR}' access.log

  2. 30.15%




$upstream_cache_status包含以下几种状态:
·MISS 未命中,请求被传送到后端
·HIT 缓存命中
·EXPIRED 缓存已经过期请求被传送到后端
·UPDATING 正在更新缓存,将使用旧的应答
·STALE 后端将得到过期的应答





  • 收藏
  • 评论
  • 举报
提问和评论都可以,用心的回复会被更多人看到 评论
发布评论
相关文章

举报文章

请选择举报类型

内容侵权 涉嫌营销 内容抄袭 违法信息 其他

具体原因

包含不真实信息 涉及个人隐私

补充说明

0/200

上传截图

格式支持JPEG/PNG/JPG,图片不超过1.9M

已经收到您得举报信息,我们会尽快审核