| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- #!/bin/bash
- # info: update network rrd
- # options: period
- #
- # The function is for updating network usage rrd database and graphic.
- #----------------------------------------------------------#
- # Variable&Function #
- #----------------------------------------------------------#
- # Argument defenition
- update=$1
- period=${1-daily}
- # Importing variables
- source $VESTA/conf/vars.conf
- #----------------------------------------------------------#
- # Action #
- #----------------------------------------------------------#
- # Switching on time period
- case $period in
- daily) start='-1d'; end='now'; grid='MINUTE:30:HOUR:1:HOUR:4:0:%H:%M';;
- weekly) start='-7d'; end='now'; grid='HOUR:8:DAY:1:DAY:1:0:%a %d';;
- monthly) start='-1m'; end='now'; grid='WEEK:1:WEEK:1:WEEK:1:0:%b %d';;
- yearly) start='-1y'; end='now'; grid='MONTH:1:YEAR:1:MONTH:2:2419200:%b';;
- *) exit $E_RRD ;;
- esac
- # Checking directory
- if [ ! -d "$V_RRD/net" ]; then
- mkdir $V_RRD/net
- fi
- # Parsing network interfaces
- ifaces=$(cat /proc/net/dev |grep : |cut -f 1 -d : |sed -e "s/ //g")
- # Parsing excludes
- for exclude in $(echo ${V_RRD_IFACE_EXCLUDE//,/ }); do
- ifaces=$(echo "$ifaces" |grep -vw "$exclude" )
- done
- for iface in $ifaces; do
- # Checking database
- if [ ! -e "$V_RRD/net/$iface.rrd" ]; then
- # Adding database
- rrdtool create $V_RRD/net/$iface.rrd --step $V_RRD_STEP \
- DS:RX:COUNTER:600:U:U \
- DS:TX:COUNTER:600:U:U \
- RRA:AVERAGE:0.5:1:600 \
- RRA:AVERAGE:0.5:6:700 \
- RRA:AVERAGE:0.5:24:775 \
- RRA:AVERAGE:0.5:288:797 \
- RRA:MAX:0.5:1:600 \
- RRA:MAX:0.5:6:700 \
- RRA:MAX:0.5:24:775 \
- RRA:MAX:0.5:288:797
- fi
- # Parsing device stats
- if [ -z "$update" ]; then
- raw_iface=$(grep "$iface:" /proc/net/dev |sed -e "s/:/ /")
- rx=$(echo "$raw_iface" |awk '{print $2}')
- tx=$(echo "$raw_iface" |awk '{print $10}')
- # Updating rrd database
- rrdtool update $V_RRD/net/$iface.rrd N:$rx:$tx
- fi
- # Updating rrd graph
- rrdtool graph $V_RRD/net/$period-$iface.png \
- --imgformat PNG \
- --height="120" \
- --width="440" \
- --start "$start" \
- --end "$end" \
- --vertical-label "KBytes" \
- --x-grid "$grid" \
- -c "BACK#484439" \
- -c "SHADEA#484439" \
- -c "SHADEB#484439" \
- -c "FONT#DDDDDD" \
- -c "CANVAS#202020" \
- -c "GRID#666666" \
- -c "MGRID#AAAAAA" \
- -c "FRAME#202020" \
- -c "ARROW#FFFFFF" \
- DEF:inoctets=$V_RRD/net/$iface.rrd:RX:AVERAGE \
- DEF:outoctets=$V_RRD/net/$iface.rrd:TX:AVERAGE \
- "CDEF:in=inoctets,8,*" \
- "CDEF:out=outoctets,8,*" \
- COMMENT:'\r' \
- AREA:in#C8EA2E:"Input (rx) "\
- GPRINT:in:'LAST: Current\:''%8.0lf' \
- GPRINT:in:'MIN: Min\:''%8.0lf' \
- GPRINT:in:'MAX: Max\:''%8.0lf\j' \
- LINE1:out#1c74cd:"Output (tx)" \
- GPRINT:out:'LAST:Current\:''%8.0lf' \
- GPRINT:out:'MIN:Min\:''%8.0lf' \
- GPRINT:out:'MAX:Max\:''%8.0lf\j' >/dev/null 2>/dev/null; result=$?
- if [ "$result" -ne 0 ]; then
- exit $E_RRD
- fi
- done
- #----------------------------------------------------------#
- # Vesta #
- #----------------------------------------------------------#
- exit
|