hotsanic |
Subversion Repositories: |
Compare with Previous - Blame - Download
#!/usr/bin/env sh
. ../../settings
SECS=`date +%s`
MODNAME=`pwd|sed -e "s/.*\///g" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`
echo $SECS $MODNAME: setting up database
$BINPATH/rrdtool create rrd/queue.rrd --step 10 \
DS:kbytes:GAUGE:300:0:U \
DS:req:GAUGE:300:0:U \
DS:crefused:GAUGE:300:0:U \
DS:ctimeout:GAUGE:300:0:U \
DS:rtimeout:GAUGE:300:0:U \
DS:nohost:GAUGE:300:0:U \
DS:other:GAUGE:300:0:U \
DS:msrefused:GAUGE:300:0:U \
RRA:AVERAGE:0:1:720 \
RRA:AVERAGE:0.3:6:2880 \
RRA:AVERAGE:0.3:60:2016 \
RRA:AVERAGE:0.3:360:1488 \
RRA:AVERAGE:0.3:4320:1460 \
RRA:MIN:0.3:6:2880 \
RRA:MIN:0.3:60:2016 \
RRA:MIN:0.3:360:1488 \
RRA:MIN:0.3:4320:1460 \
RRA:MAX:0.3:6:2880 \
RRA:MAX:0.3:60:2016 \
RRA:MAX:0.3:360:1488 \
RRA:MAX:0.3:4320:1460
# 2h -> 720 Werte alle 10sec
# 2d = 48h -> 2880 Werte alle 1min (6*10sec)
# 2w = 14d -> 2016 Werte alle 10min (60*10sec)
# 2m = 62d -> 1488 Werte alle 1h (360*10sec)
# 2y = 730d -> 1460 Werte alle 12h (4320*10sec)