码迷,mamicode.com
首页 > 系统相关 > 详细

使用Bash脚本进行进程性能监控

时间:2014-11-19 01:53:34      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:linux   性能   bash   

对一个Linux进程进行监控,使用Bash脚本实现。

使用ps命令对进程进行监控,使用循环加睡眠时间实现连续监控。

用法:

psmonitor.sh -p [pid] -d [interval] -n [statistics count]

参数:

-p 监控的进程ID

-d 读性能数据间隔

-n 统计次数,达到该次数,自动退出

#!/bin/bash
interval=0
count=0
pid=""
while getopts "p:d:n:" arg
do
        case $arg in
        p)
                pid=$OPTARG
                echo "pid: $pid"
                ;;
        d)
                interval=$OPTARG
                echo "interval:$interval"
                ;;
        n)
                count=$OPTARG
                echo "count:$count"
                ;;
        \?)
                echo "unkonw argument"
                exit 1
                ;;
        esac
done



i=0;

while [ true ]; do
        if [ $i -gt $count ]
        then
                exit 0;
        else
                let "i+=1"
        fi
         ps h -p $pid -o rss,vsz,%mem,%cpu
        sleep $interval

done

监控效果:

-bash-3.2$ ./psmonitor.sh -p 4181 -d 1 -n 10
pid: 4181
interval:1
count:10
1511232 2537664 37.3 2.4
1511232 2537664 37.3 2.4
1511232 2537664 37.3 2.4
1511232 2537664 37.3 2.4
1511232 2537664 37.3 2.4
1511232 2537664 37.3 2.4
1511232 2537664 37.3 2.4
1511232 2537664 37.3 2.4
1511232 2537664 37.3 2.4
1511232 2537664 37.3 2.4
1511232 2537664 37.3 2.4


使用Bash脚本进行进程性能监控

标签:linux   性能   bash   

原文地址:http://blog.csdn.net/hongweigg/article/details/41249593

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!