linux常用命令

1,高亮显示查询结果

cat dubbo-access-provider.2016-08-25.log  |grep '2016-08-25 01:06:38'  | grep loadCustom --color


2,求该接口(loadCustom)的某天平均响应时间

cat dubbo-access-provider.2016-08-25.log |grep loadCustom| cut -d ':' -f8|cut -d 'm' -f1 |awk '{sum+=$1} END {print "平均值 = ", sum/NR}'




3,第38秒接口响应总和

cat dubbo-access-provider.2016-08-25.log |grep loadCustom |grep '2016-08-25 01:06:38'| cut -d ':' -f8|cut -d 'm' -f1 |awk '{sum+=$1} END {print "Sum = ", sum}'



4,某个分钟的最大响应时间(凌晨一点6分)

cat dubbo-access-provider.2016-08-25.log |grep loadCustom |grep '2016-08-2501:06'| cut -d ':' -f8|cut -d 'm' -f1 |awk  'BEGIN {max = 0} {if ($1>max) max=$1 fi} END {print "Max=", max}'


5,超时的请求


cat dubbo-access-provider.2016-08-25.log |grep getCustoms | awk -F "cost:|ms DONE" '{if($2 > 4999) print $0}' |wc -l




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值