1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-21 18:41:03 +00:00

[router/freebox] Use DERIVE for error correction

Signed-off-by: Olivier Mehani <shtrom@ssji.net>
This commit is contained in:
Olivier Mehani 2019-07-25 20:43:15 +10:00
parent 2fe1beccc2
commit a207c6009b
No known key found for this signature in database
GPG key ID: 6F82C3C767D655AA

View file

@ -274,18 +274,30 @@ graph_config() {
echo 'graph_order fec_down fec crc_down crc hec_down hec'
echo 'fec_down.label FEC down'
echo 'fec_down.type DERIVE'
echo 'fec_down.min 0'
echo 'fec_down.graph no'
echo 'fec.label FEC'
echo 'fec.type DERIVE'
echo 'fec.min 0'
echo 'fec.negative fec_down'
echo 'crc_down.label CRC down'
echo 'crc_down.type DERIVE'
echo 'crc_down.min 0'
echo 'crc_down.graph no'
echo 'crc.label CRC'
echo 'crc.type DERIVE'
echo 'crc.min 0'
echo 'crc.negative crc_down'
echo 'hec_down.label HEC down'
echo 'hec_down.type DERIVE'
echo 'hec_down.min 0'
echo 'hec_down.graph no'
echo 'hec.label HEC'
echo 'hec.type DERIVE'
echo 'hec.min 0'
echo 'hec.negative hec_down'
;;
.traffic)