我可以使用什么命令来分析Apache的日志文件,该文件告诉我在第x天上午11点到下午13点之间,每秒的平均请求是。。?操作系统是linux(red hat)
谢谢
最佳答案
在第十天上午11点到下午13点之间
我的钟一直走到下午13点。一号跑道怎么样?
假设你是说下午1点。。。。
有点像。。。
awk 'BEGIN {started=0}
/\[29\/Oct\/2010:11/ {
started=1}
/\[29\/Oct\/2010:1[3-9]/ {
print count/(2*60*60);
exit; }
// {
if (started) count++;
}' <access_log