1
0
mirror of https://github.com/Tafkas/fritzbox-munin.git synced 2023-10-10 13:36:55 +02:00

fix up_traffic

This commit is contained in:
Christian Stade-Schuldt 2021-04-29 09:12:52 +02:00
parent 2dabb02c2c
commit d7929f15fc

View File

@ -39,7 +39,7 @@ def print_values():
down_traffic = fs.bytes_received down_traffic = fs.bytes_received
print("down.value %d" % down_traffic) print("down.value %d" % down_traffic)
up_traffic = fs.bytes_received up_traffic = fs.bytes_sent
print("up.value %d" % up_traffic) print("up.value %d" % up_traffic)
if not os.environ.get("traffic_remove_max"): if not os.environ.get("traffic_remove_max"):