Linux常用监控脚本

1、查看主机网卡流量
#!/bin/bash #network #Mike.Xu while : ; do time=`date +%m"-"%d" "%k":"%M` day=`date +%m"-"%d` rx_before=`ifconfig ens33|sed -n "8"p|awk '{print $2}'|cut -c7-` tx_before=`ifconfig ens33|sed -n "8"p|awk '{print $6}'|cut -c7-` sleep 2 rx_after=`ifconfig ens33|sed -n "8"p|awk '{print $2}'|cut -c7-` tx_after=`ifconfig ens33|sed -n "8"p|awk '{print $6}'|cut -c7-` rx_result=$[(rx_after-rx_before)/256] tx_result=$[(tx_after-tx_before)/256] echo "$time Now_In_Speed: "$rx_

Linux常用监控脚本最先出现在Python成神之路

版权声明:
作者:主机优惠
链接:https://www.techfm.club/p/6988.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>