BASH将值存储在数组中并检查每个值的差异

时间:2012-03-09 07:43:54

标签: arrays shell variables

[CentOS,BASH,cron]是否有一种方法可以声明即使在系统重启时也能保留的变体?

该方案是snmpwalk接口I / O错误并将值存储在数组中。 5分钟之后再次进行snmpwalk的cron工作会产生另一组价值。我想将它们与每个接口的先前对应值进行比较。如果差异超过阈值(50),则会生成警报。

所以问题是:如何存储一个会在系统中丢失的数组变量?以及如何检查两个数组中每个值的差异?


更新2012年3月16日我在此附上我的最终脚本供您参考。

#!/bin/bash
# This script is to monitor interface Input/Output Errors of Cisco devices, by snmpwalk the error values every 5 mins, and send email alert if incremental value exceeds threshold (e.g. 500).
# Author: Wu Yajun | Created: 12Mar2012 | Updated: 16Mar2012
##########################################################################

DIR="$( cd "$( dirname "$0" )" && pwd )"
host=device.ip.addr.here

# Check and initiate .log file storing previous values, create .tmp file storing current values.
test -e $DIR/host1_ifInErrors.log || snmpwalk -c public -v 1 $host IF-MIB::ifInErrors > $DIR/host1_ifInErrors.log
snmpwalk -c public -v 1 $host IF-MIB::ifInErrors > $DIR/host1_ifInErrors.tmp

# Compare differences of the error values, and alert if diff exceeds threshold.
# To exclude checking some interfaces, e.g. Fa0/6, Fa0/10, Fa0/11, change the below "for loop" to style as:
# for i in {1..6} {8..10} {13..26}
totalIfNumber=$(echo $(wc -l $DIR/host1_ifInErrors.tmp) | sed 's/ \/root.*$//g')

for (( i=1; i<=$totalIfNumber; i++))
do
        currentValue=$(cat $DIR/host1_ifInErrors.tmp | sed -n ''$i'p' | sed 's/^.*Counter32: //g')
        previousValue=$(cat $DIR/host1_ifInErrors.log | sed -n ''$i'p' | sed 's/^.*Counter32: //g')
        diff=$(($currentValue-$previousValue))
        [ $diff -ge 500 ] && (ifName=$(echo $(snmpwalk -c public -v 1 $host IF-MIB::ifName.$i) | sed 's/^.*STRING: //g') ; echo "ATTENTION - Input Error detected from host1 interface $ifName" | mutt -s "ATTENTION - Input Error detected from host1 interface $ifName" <email address here>)
done

# Store current values for next time checking.
snmpwalk -c public -v 1 $host IF-MIB::ifInErrors > $DIR/host1_ifInErrors.log

1 个答案:

答案 0 :(得分:0)

将变量保存在文件中。添加日期戳:

echo "$(date)#... variables here ...." >> "$file"

从文件中读取最后一个值:

tail -1 "$file" | cut "-d#" -f2 | read ... variables here ....

这也为您提供了一个很好的日志文件,您可以在其中监控更改。我建议始终附加到该文件,以便您可以轻松查看服务何时停止/由于某种原因未运行。

要检查更改,您可以使用简单的if

if [[ "...old values..." != "...new values..." ]]; then
    send mail
fi