From 4a679daa2b00d948b3f96b5b104398f4a8e1b878 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Fri, 2 Dec 2016 14:53:05 -0800 Subject: [PATCH] munin/wormhole_errors: fix mailboxes_scary I had it in the list of configured metrics, but forgot to actually emit the value. --- misc/munin/wormhole_errors | 1 + 1 file changed, 1 insertion(+) diff --git a/misc/munin/wormhole_errors b/misc/munin/wormhole_errors index 05c3cf5..5ad312f 100755 --- a/misc/munin/wormhole_errors +++ b/misc/munin/wormhole_errors @@ -43,5 +43,6 @@ print "nameplates.value", (r["nameplates_total"] - r["nameplate_moods"].get("happy", 0)) print "mailboxes.value", (r["mailboxes_total"] - r["mailbox_moods"].get("happy", 0)) +print "mailboxes_scary.value", r["mailbox_moods"].get("scary", 0) t = data["transit"]["since_reboot"] print "transit.value", (t["total"] - t["moods"].get("happy", 0))