jablonka.czprosek.czf

hotsanic

Subversion Repositories:
[/] [branches/] [HotSaNIC-0.5.0-pre6/] [modules/] [bind/] [makerrd] - Rev 4 Go to most recent revision

Compare with Previous - Blame - Download


#!/bin/sh

. ../../settings

SECS=`date +%s`

echo $SECS BIND: setting up database bind.rrd for values [0..U]
  
$BINPATH/rrdtool create rrd/bind.rrd --step 10 \
  DS:success:COUNTER:300:0:U \
  DS:referral:COUNTER:300:0:U \
  DS:nxrrset:COUNTER:300:0:U \
  DS:nxdomain:COUNTER:300:0:U \
  DS:recursion:COUNTER:300:0:U \
  DS:failure:COUNTER: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)


Powered by WebSVN 2.2.1