从APACHE的日志记录中 提取已使用的流量数据 AWK

If you need a simple, non-scientific way of calculating the used bandwidth of your webserver in MB, use this command:

cat /var/log/apache2/access.log | awk ‘{ SUM += $5} END { print SUM/1024/1024 }’

Change the log file name to fit your vhost.

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注