From bfa429cc5a51ea63aceabcec06102b32b3a943c8 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Thu, 26 May 2016 18:04:52 -0700 Subject: [PATCH] munin/wormhhole_transit: fix key name --- misc/munin/wormhole_transit | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/misc/munin/wormhole_transit b/misc/munin/wormhole_transit index 3a30c9e..e5211a3 100755 --- a/misc/munin/wormhole_transit +++ b/misc/munin/wormhole_transit @@ -67,11 +67,11 @@ CONFIG = """\ graph_title Magic-Wormhole Transit Usage graph_vlabel Bytes per Hour graph_category network -transit.label Transit Bytes -transit.draw LINE1 -transit.type DERIVE -transit.min 0 -transit.cdef transit,3600,* +bytes.label Transit Bytes +bytes.draw LINE1 +bytes.type DERIVE +bytes.min 0 +bytes.cdef bytes,3600,* """ if len(sys.argv) > 1 and sys.argv[1] == "config": @@ -79,4 +79,4 @@ if len(sys.argv) > 1 and sys.argv[1] == "config": sys.exit(0) c = count_events() -print "nameplates.value", c["transit bytes"] +print "bytes.value", c["transit bytes"]