1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-22 02:51:03 +00:00

Merge pull request #1003 from shtrom/freebox-errors-derive

[router/freebox] Use DERIVE for error correction subgraph
This commit is contained in:
Lars Kruse 2019-07-28 21:10:16 +02:00 committed by GitHub
commit 400fe6a39d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 29 KiB

Before After
Before After

View file

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