时间:2021-05-22
利用shell脚本实现每隔60秒磁盘内存数据监控
#!/bin/bash#Author:GaoHongYu#QQ:1061767621#Time:2019-12-24 18:43:22#Name:ncjk.sh#Version:V1.0clearxtip=$(hostname -I)cprl=$(df -Th |head -2|tail -1|cut -d " " -f 10)cpky=$(df -Th |head -2|tail -1|cut -d " " -f 12)cpbfb=$(df -Th |head -2|tail -1|cut -d " " -f 18)ncrl=$(free -m |head -2|tail -1|cut -d " " -f 13)ncsy=$(free -m |head -2|tail -1|cut -d " " -f 22)BC=$(echo "scale=2;$ncsy/$ncrl*100" |bc|cut -d "." -f 1)i=1while [ $i -le 60 ];do echo -e '\n' echo -e '\n' echo "-----磁盘监控系统-----" echo "--作者:Mr_GaoHongYu--" echo -n "监控本机IP地址:"$xtip echo -e '\n' echo "-----磁盘使用情况-----" echo -n "系统磁盘总容量:"$cprl echo -e '\n' echo -n "当前磁盘可用容量:"$cpky echo -e '\n' echo -n "可用容量百分比:"$cpbfb echo -e '\n' echo "-----内存使用情况-----" echo -n "内存总容量:"$ncrl echo -e '\n' echo -n "内存已使用:"$ncsy echo -e '\n' echo -n "内存已用百分比:" echo "$BC%" sleep 60 let i++done效果如图:
以上就是shell脚本实现磁盘监控系统的详细内容,更多关于shell 磁盘监控的资料请关注其它相关文章!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了PHP+swoole+linux实现系统监控和性能优化操作。分享给大家供大家参考,具体如下:服务器监控端口监控php运行shell脚本classS
本文介绍了几个常用的Linux监控脚本,可以实现主机网卡流量、系统状况、主机磁盘空间、CPU和内存的使用情况等方面的自动监控与报警。根据自己的需求写出的shel
为确保php页面在后台运行,写了一个监控脚本,假设程序异常退出,那么可以自动重启。shell脚本/usr/local/scripts/receve.sh内容:#
用shell脚本监控进程是否存在不存在则启动的实例,先上代码干货:#!/bin/shps-fe|grepprocessString|grep-vgrepif[$
Shell脚本Shell脚本(shellscript),是一种为shell编写的脚本程序。业界所说的shell通常都是指shell脚本,但读者朋友要知道,she