Linux 系统CPU,内存,负载,IO监控脚本

原文链接:http://francs3.blog.163.com/blog/static/40576727201131314827986/

 

今天提供一个Linux 系统监控脚本,监控的指标有CPU,内存使用率,负载,IO等, 并且将
主机的这些指标插入到数据库里,便于历史分析。


--1创建一张监控表,用于记录各项批指标信息
CREATE TABLE tbl_monitor (
    id   serial,
    hostname character varying(64),              --主机名    
    add_time timestamp without time zone,     --记录插入时间
    cpu_useratio numeric(5,2),                       --cpu使用率
    mem_useratio numeric(5,2),                      --内存使用率
    load numeric(5,2),                                      --负载(load)值
    io_wa smallint,                                            --系统IO等侍情况
   constraint pk_tbl_monitor PRIMARY KEY (ID)
);


---2监控脚本
#/bin/bash

### load system environment
export PGHOME=/opt/pgsql
export LD_LIBRARY_PATH=$PGHOME/lib:/lib64:/usr/lib64:/usr/local/lib64:/lib:/usr/lib:/usr/local/lib:$PGSQL_HOME/lib:$PROJ_HOME/lib:$GEOS_HOME/lib:$POSTGIS_HOME/lib
export PATH=$PGHOME/bin:$PATH:.

##### get cpu mem current information
file_dir="/home/postgres/script/tf/monitor"
#/bin/bash

##### get cpu mem current information
file_dir="/home/postgres/script/tf/monitor"
vmstat 1 3 > ${file_dir}/cpu_file.txt
free -m > ${file_dir}/mem_file.txt
cpu_file="${file_dir}/cpu_file.txt"
mem_file="${file_dir}/mem_file.txt"

### declare variable
v_hostname="`hostname`"
v_hostip="xxx.xxx.xxx.xxx"
v_time="`date +%F\ %T`"
v_cpuidle=`cat ${cpu_file} | sed -n '$'p | awk '{print $15}'`
v_cpuuse=`echo "scale=2; 100.00-${v_cpuidle}" | bc`
v_memtotal=`cat ${mem_file} | sed -n '2'p | awk '{print $2}'`
v_memused=`cat ${mem_file} | sed -n '2'p | awk '{print $3}'`
v_memratio=`echo "scale=2; ${v_memused}*100/${v_memtotal}" | bc`
v_load=`uptime | awk '{print $10}'| tr -d ","`
v_io=`cat ${cpu_file} | sed -n '$'p | awk '{print $(NF-1) }'`
v_email="
francs.tan@sky-mobi.com Francs3@163.com"

## cpu alarm
if [ ${v_cpuidle} -lt 95 ]; then
 echo "`date +%F\ %T` ${v_hostip}: CPU usage alarm ,please check ! " |  mutt -s "CPU usage  ${v_cpuuse}% , ${v_hostname} " ${v_email}
fi

## insert data to monitor database
psql -h 127.0.0.1 -p 1921 -U skytf -d skytf -c " insert into skytf.tbl_monitor(hostname,add_time,cpu_useratio, mem_useratio , load  ,io_wa ) values ( '${v_hostname}', '${v_time}', ${v_cpuuse}, ${v_memratio}, ${v_load}, ${v_io} );"

## remove temp file
rm -f ${cpu_file}
rm -f ${mem_file}

   备注:1 这个脚本取当前LINUX操作系统的各项指标并录入到数据库里;
             2 CPU 指标来源于 "vmstat" 输出的 id 字段;
             3 memory 指标来源" free -m" 输出;
             4 load 指标来源于 " uptime " 输出;
             5 io 指标来源于 "vmstat" 输出的 wa 字段。

--3放到crontab里定时执行
######  Monitor cpu, memory, io, load 
*/5  * * * * /home/postgres/script/tf/monitor/monitor.sh >> /home/postgres/script/tf/monitor/monitor.log 2>&1


--4取部分数据
skytf=> select * From tbl_monitor limit 5;
 id |   hostname   |      add_time       | cpu_useratio | mem_useratio | load | io_wa
----+--------------+---------------------+--------------+--------------+------+-------
 37 | 172_16_3_216 | 2011-04-13 09:55:03 |        14.00 |        99.42 | 1.47 |     7
 38 | 172_16_3_216 | 2011-04-13 09:57:03 |         0.00 |        83.30 | 0.86 |     0
 39 | 172_16_3_216 | 2011-04-13 09:59:03 |         0.00 |        83.26 | 0.11 |     0
 40 | 172_16_3_216 | 2011-04-13 10:05:03 |        13.00 |        84.89 | 0.97 |     0
 41 | 172_16_3_216 | 2011-04-13 10:10:03 |        13.00 |        85.05 | 1.02 |     0
(5 rows)

      发现数据已经进去了,将OS层面数据记录到数据库里,从而当系统出现问题时,可以做为一个
监控凭证。


--5总结
    这脚本尚处于测试阶段,后续如做生产用途还需完善。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值