使用shell脚本和系统日志来统计并发数

cat www_access.log |grep "/message/savemsg/" >www.log

将包含该字段的/message/savemsg/的行写到www.log文件中

cat h_access.log |grep "/message/publish/" >h.log

将包含该字段的/message/publish/的行写到h.log文件中

cat lpt_access.log |grep "/message/savemsg_/\|/message/savemsg/" >lpt.log

将包含该字段的/message/savemsg/或者/message/savemsg_的行写到lpt.log文件中

cat c_access.log |grep "/message/publishmsg/\|/message/publish/\|/connection/savemsg/" >c.log

同上

sed '$r c.log' h.log > ch.log

将日志c.log和h.log合成一个新的文件ch.log

sed '$r lpt.log' ch.log > chlpt.log

同上

sed '$r www.log' chlpt.log > wwwchlpt.log

同上

rm -fr c.log
rm -fr h.log
rm -fr lpt.log
rm -fr www.log
rm -fr ch.log
rm -fr chlpt.log

wc -l wwwchlpt.log

显示wwwchlpt.log的行数

awk '{print $4}' wwwchlpt.log |cut -c 14-21|sort|uniq -c|sort -nr|head
统计某字段的个数
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值