Warning - The following rrdtool commands will reset the gateway quality RRD and all existing data will be lost.
Apinger sets the gateway quality RRD's like this. Which is not consistent with the other pfSense RRD's.
rrdtool create /var/db/rrd/WAN_DHCP-quality.rrd \
DS:loss:GAUGE:600:0:100 \
DS:delay:GAUGE:600:0:100000 \
RRA:AVERAGE:0.5:1:600 \
RRA:AVERAGE:0.5:6:700 \
RRA:AVERAGE:0.5:24:775 \
RRA:AVERAGE:0.5:288:796 \
To make the gateway quality RRD's consistent with the other pfSense RRD's, you might try this:
rrdtool create /var/db/rrd/WAN_DHCP-quality.rrd \
--step 60 \
DS:loss:GAUGE:120:0:100 \
DS:delay:GAUGE:120:0:100000 \
RRA:AVERAGE:0.5:1:1000 \
RRA:AVERAGE:0.5:5:1000 \
RRA:AVERAGE:0.5:60:1000 \
RRA:AVERAGE:0.5:720:3000 \
Replace "WAN_DHCP" with the target gateway's name.