Files
monitor/createRRDs.sh
2025-03-24 21:33:34 +00:00

73 lines
2.5 KiB
Bash

# create RRDs:
# 600 samples of 5 minutes (2 days and 2 hours)
# 700 samples of 30 minutes (2 days and 2 hours, plus 12.5 days)
# 775 samples of 2 hours (above + 50 days)
# 797 samples of 1 day (above + 732 days, rounded up to 797)
rrdtool create disk.rrd \
DS:root:GAUGE:600:U:U \
DS:boot:GAUGE:600:U:U \
DS:home:GAUGE:600:U:U \
DS:opt:GAUGE:600:U:U \
DS:tmp:GAUGE:600:U:U \
DS:var:GAUGE: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
rrdtool create load.rrd \
DS:min1:GAUGE:600:U:U \
DS:min5:GAUGE:600:U:U \
DS:min15:GAUGE: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
rrdtool create cpu.rrd \
DS:us:GAUGE:600:U:U \
DS:sy:GAUGE:600:U:U \
DS:ni:GAUGE:600:U:U \
DS:id:GAUGE:600:U:U \
DS:wa:GAUGE:600:U:U \
DS:hi:GAUGE:600:U:U \
DS:si:GAUGE:600:U:U \
DS:st:GAUGE: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
rrdtool create mem.rrd \
DS:total:GAUGE:600:U:U \
DS:free:GAUGE:600:U:U \
DS:used:GAUGE:600:U:U \
DS:cached:GAUGE: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
rrdtool create swap.rrd \
DS:total:GAUGE:600:U:U \
DS:free:GAUGE:600:U:U \
DS:used:GAUGE:600:U:U \
DS:avail:GAUGE: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
rrdtool create network.rrd \
DS:in:GAUGE:600:U:U \
DS:out:GAUGE: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