Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 635 Bytes

85.md

File metadata and controls

26 lines (18 loc) · 635 Bytes

题目要求

需求背景:

需要统计网站的并发量,并绘图。 说明: 只需要写出shell脚本即可,不用关心zabbix配置。

假设日志路径 /data/logs/www.aaa.com_access.log

日志格式如下:

112.107.15.12 - [07/Nov/2018:09:59:01 +0800] www.aaa.com "/api/live.php" 200"-" "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)"

参考答案

#!/bin/bash
#这个脚本用来计算网站并发量
#作者:猿课-阿铭 www.apelearn.com
#日期:2018-12-12

LANG=en
t=`date -d "-1 second" +%d/%b/%Y:%`
log=/data/logs/www.aaa.com_access.log

tail -1000 $log |grep -c "$t"