Cacti/nginxレスポンス集計
提供: 初心者エンジニアの簡易メモ
2015年5月22日 (金) 16:17時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「=nginxレスポンスタイム集計= */etc/nginx/nginx.conf log_formatの最後に処理時間(秒)"$request_time"を追加する log_format main '$remote_addr - $rem...」)
nginxレスポンスタイム集計
- /etc/nginx/nginx.conf
log_formatの最後に処理時間(秒)"$request_time"を追加する
log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for" "$request_time" ';
バーチャルホストで仕切ったレスポンスのみを取得する場合は
<VirtualHost *:8080> ServerName example.test.com DocumentRoot "/var/www/zend/example/public" HostNameLookups off UseCanonicalName on CustomLog logs/aptime_example_log apachetime env=!aptimenolog #この場所に追加 <Directory "/var/www/zend/example/public"> Options Indexes FollowSymLinks Includes ExecCGI AllowOverride All Allow from All </Directory> </VirtualHost>
以下記事記述のaptime_logをaptime_example_logに変更で使えます。
レスポンスタイム集計バッチ
- /etc/httpd/cacti/aptime.sh
#!/bin/bash tail /etc/httpd/logs/aptime_log -n 1000| awk '{ sum += $10} END {print sprintf("aptime:%d", int(sum/1000000))}'
バッチの権限を755に
chmod 755 /etc/httpd/cacti/aptime.sh