Nagios插件开发之监控程序占用资源

简介:

   一般情况下,我们只需要监控程序进程在没在就可以了。但是这次遭遇了这样的事,公司开发的程序,程序进程还在,但是死锁了。导致大范围的影响,更要命的是根本不知道问题出在哪里,还是别的测试部同事帮忙发现的,真是丢尽运维的脸了

为避免下次再遭遇到这样的情况,分析了这次进程死锁的现象,发现死锁会占用100%cpu,正常情况下只占用10%以内。决定编写nagios插件,用来监控程序占用的资源,包括cpu,内存等。

 

1、shell脚本需求分析:

   能设置cpu,mem的阈值,资源占用超过阈值就报警。

   要能判断这个进程是否存在,若有一个不存在,则报警。

 

2、shell脚本执行效果如下:

 1、如果输入格式不正确,则输出帮助信息

[root@center230 libexec]# shcomponent_resource.sh

Usage parament:

   component_resource.sh [--cpu] [--mem]

 

Example:

   component_resource.sh --cpu 50 --mem 50

 

2、若没超出阈值,输出资源占用情况,退出值为0

[root@center230 libexec]# shcomponent_resource.sh  --cpu 50 --mem 50

VueSERVER_cpu_use=5.6% VueCache_cpu_use=1.9%VueAgent_cpu_use=0.0% VueCenter_cpu_use=0.0% VueDaemon_cpu_use=0.0%;VueSERVER_mem_use=0.2% VueCache_mem_use=7.4% VueAgent_mem_use=0.5% VueCenter_mem_use=0.1%VueDaemon_mem_use=0.0%

[root@center230 libexec]# echo $?

0

 

3、若超出阈值,输出资源占用情况,退出值为2

[root@center230 libexec]# shcomponent_resource.sh  --cpu 5 --mem 5

VueSERVER_cpu_use=9.4% VueCache_cpu_use=0.0%VueAgent_cpu_use=0.0% VueCenter_cpu_use=0.0% VueDaemon_cpu_use=0.0%;VueSERVER_mem_use=0.2% VueCache_mem_use=7.4% VueAgent_mem_use=0.5%VueCenter_mem_use=0.1% VueDaemon_mem_use=0.0%

[root@center230 libexec]# echo $?

2

 

4、若进程不存在,输出down掉的进程,以及正常使用中的进程资源情况,退出值为2

[root@yckj scripts]# sh component_resource.sh--cpu 50 --mem 50

Current VueDaemon VueCenter VueAgent VueCache VueSERVER is down. 

[root@yckj scripts]# echo $?

2

3、Shell脚本代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[root@center230 libexec] # catcomponent_resource.sh
#!/bin/sh
#author:yangrong
#date:2014-05-20
#mail:10286460@qq.com
  
#pragrom_list=(VueDaemon VueCenter VueAgentVueCache VueSERVER VUEConnector Myswitch Slirpvde)
pragrom_list=(VueDaemon VueCenter VueAgentVueCache VueSERVER)
  
####获取cpu阈值和mem阈值#######
case  $1  in
  --cpu)
    cpu_crit=$2
   ;;
  --mem)
    mem_crit=$2
   ;;
esac
  
case  $3  in
  --cpu)
    cpu_crit=$4
   ;;
  --mem)
    mem_crit=$4
   ;;
esac
  
  
  
###判断传参数量,如果不为4,则var值为1,var0则正常####
if  [[ $1 == $3  ]]; then
        var=1   
elif  [ $ # -ne 4 ] ;then
        var=1
else
        var=0
fi
  
  
###打印错误提示信息
if  [ $var - eq  1 ]; then
    echo  "Usage parament:"
    echo  "    $0 [--cpu][--mem]"
    echo  ""
    echo  "Example:"
    echo  "    $0 --cpu 50 --mem50"
    exit
fi
  
  
###把不存在的进程放一变量中
num=$(( ${ #pragrom_list[@]}-1 ))
  
NotExist= ""
for  digit  in  ` seq  0 $num`
do
  a=` ps  -ef| grep  - v  grep  | grep  ${pragrom_list[$digit]}| wc  -l`
   if [ $a - eq  0 ]; then
     NotExist= "$NotExist ${pragrom_list[$digit]}"
     unset  pragrom_list[$digit]
   fi
done
#echo"pragrom_list=${pragrom_list[@]}"
  
  
  
####对比进程所占资源与阈值大小
cpu_use_all= ""
mem_use_all= ""
compare_cpu_temp=0
compare_mem_temp=0
for  in  ${pragrom_list[@]}
do
   cpu_use=` top  -b -n1| grep  $n| awk  '{print $9}' `
   mem_use=` top  -b -n1| grep  $n| awk  '{print $10}' `
    if [[ $cpu_use ==  ""  ]]; then
        cpu_use=0
    fi
    if [[ $mem_use ==  ""  ]]; then
        mem_use=0
    fi
  
   compare_cpu=` echo  "$cpu_use > $cpu_crit" | bc `
   compare_mem=` echo  "$mem_use > $mem_crit" | bc `  
    if [[ $compare_cpu == 1  ]]; then
        compare_cpu_temp=1
    fi
    if [[ $compare_mem == 1  ]]; then
        compare_mem_temp=1
    fi
  
   cpu_use_all= "${n}_cpu_use=${cpu_use}% ${cpu_use_all}"
   mem_use_all= "${n}_mem_use=${mem_use}% ${mem_use_all}"
done
  
  
###如果该变量有值,则代表有进程down。则退出值为2
if  [[  "$NotExist"  !=  "" ]]; then
  echo  -e  "Current ${NotExist} isdown.$cpu_use_all;$mem_use_all"
  exit  2
###如果cpu比较值为1,则代表有进程占用超过阈值,则退出值为2
elif  [[  "$compare_cpu_temp"  == 1]]; then
    echo  -e  "$cpu_use_all;$mem_use_all"
    exit  2
  
##如果mem比较值为1,则代表为进程mem占用超过阈值,则退出值为2
elif  [[ $compare_mem_temp == 1 ]]; then
    echo  -e  "$cpu_use_all;$mem_use_all"
    exit  2
##否则则正常输出,并输出所占cpu与内存比例
else
    echo  -e  "$cpu_use_all;$mem_use_all"
    exit  0
fi

4、后话:

  随着近日编写shell脚本越来越多,有时难免会回改以前所写脚本,经常要看一段时间才能看懂。

  为方便后续的维护,在脚本当中,每一个函数,每一段功能,都做备注,方便以后自己或他人来进行维护。

 

 

 



     本文转自杨云1028 51CTO博客,原文链接:http://blog.51cto.com/yangrong/1414345,如需转载请自行联系原作者





相关文章
|
5月前
|
监控 数据可视化 Java
visualvm工具远程对linux服务器上的JVM虚拟机进行监控与调优
本文档主要总结在window本地环境远程对linux服务断的JVM虚拟机进行监控与调优的方法。
81 0
|
8月前
|
Kubernetes Java 网络架构
冷知识!如何远程调试在K8S POD中的Java应用程序!
冷知识!如何远程调试在K8S POD中的Java应用程序!
343 0
|
传感器 监控 Linux
使用资源监控工具 glances
lances 是一款用于 Linux、BSD 的开源命令行系统监视工具,它使用 Python 语言开发,能够监视 CPU、负载、内存、磁盘 I/O、网络流量、文件系统、系统温度等信息。本文介绍 glances 的使用方法和技巧,帮助 Linux 系统管理员了解掌握服务器性能。
1507 0
|
Java Maven Docker
jib-java容器化工具
Jib是google开源的Java容器化工具 简单——Jib使用Java开发,并作为Maven或Gradle的一部分运行。你不需要编写Dockerfile或运行Docker守护进程,甚至无需创建包含所有依赖的大JAR包。
2540 1
|
Java
Confluence 6 系统运行信息中的 JVM 内存使用情况
当前一个正在运行的 Confluence 6 实例的内存使用情况     https://www.cwiki.us/display/CONF6ZH/Viewing+System+Information ...
1242 0