munin: improve 'events' ordering, add new plugin
This commit is contained in:
parent
890b47cad2
commit
27ae3b722c
|
@ -13,21 +13,21 @@ CONFIG = """\
|
||||||
graph_title Magic-Wormhole Mailbox Events
|
graph_title Magic-Wormhole Mailbox Events
|
||||||
graph_vlabel Events Since Reboot
|
graph_vlabel Events Since Reboot
|
||||||
graph_category network
|
graph_category network
|
||||||
total.label Total
|
|
||||||
total.draw LINE1
|
|
||||||
total.type GAUGE
|
|
||||||
happy.label Happy
|
happy.label Happy
|
||||||
happy.draw LINE2
|
happy.draw LINE2
|
||||||
happy.type GAUGE
|
happy.type GAUGE
|
||||||
|
total.label Total
|
||||||
|
total.draw LINE1
|
||||||
|
total.type GAUGE
|
||||||
|
scary.label Scary
|
||||||
|
scary.draw LINE2
|
||||||
|
scary.type GAUGE
|
||||||
pruney.label Pruney
|
pruney.label Pruney
|
||||||
pruney.draw LINE1
|
pruney.draw LINE1
|
||||||
pruney.type GAUGE
|
pruney.type GAUGE
|
||||||
incomplete.label Incomplete (pruned/lonely)
|
lonely.label Lonely
|
||||||
incomplete.draw LINE2
|
lonely.draw LINE2
|
||||||
incomplete.type GAUGE
|
lonely.type GAUGE
|
||||||
scary.label Scary
|
|
||||||
scary.draw LINE1
|
|
||||||
scary.type GAUGE
|
|
||||||
errory.label Errory
|
errory.label Errory
|
||||||
errory.draw LINE1
|
errory.draw LINE1
|
||||||
errory.type GAUGE
|
errory.type GAUGE
|
||||||
|
@ -45,10 +45,9 @@ if time.time() > data["valid_until"]:
|
||||||
sys.exit(1) # expired
|
sys.exit(1) # expired
|
||||||
|
|
||||||
r = data["rendezvous"]["since_reboot"]
|
r = data["rendezvous"]["since_reboot"]
|
||||||
print "total.value", r["mailboxes_total"]
|
|
||||||
print "happy.value", r["mailbox_moods"].get("happy", 0)
|
print "happy.value", r["mailbox_moods"].get("happy", 0)
|
||||||
print "pruney.value", r["mailbox_moods"].get("pruney", 0)
|
print "total.value", r["mailboxes_total"]
|
||||||
print "incomplete.value", (r["mailbox_moods"].get("pruney", 0)
|
|
||||||
+ r["mailbox_moods"].get("lonely", 0))
|
|
||||||
print "scary.value", r["mailbox_moods"].get("scary", 0)
|
print "scary.value", r["mailbox_moods"].get("scary", 0)
|
||||||
|
print "pruney.value", r["mailbox_moods"].get("pruney", 0)
|
||||||
|
print "lonely.value", r["mailbox_moods"].get("lonely", 0)
|
||||||
print "errory.value", r["mailbox_moods"].get("errory", 0)
|
print "errory.value", r["mailbox_moods"].get("errory", 0)
|
||||||
|
|
53
misc/munin/wormhole_events_alltime
Normal file
53
misc/munin/wormhole_events_alltime
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
#! /usr/bin/env python
|
||||||
|
|
||||||
|
"""
|
||||||
|
Use the following in /etc/munin/plugin-conf.d/wormhole :
|
||||||
|
|
||||||
|
[wormhole_*]
|
||||||
|
env.serverdir /path/to/your/wormhole/server
|
||||||
|
"""
|
||||||
|
|
||||||
|
import os, sys, time, json
|
||||||
|
|
||||||
|
CONFIG = """\
|
||||||
|
graph_title Magic-Wormhole Mailbox Events
|
||||||
|
graph_vlabel Events Since DB Creation
|
||||||
|
graph_category network
|
||||||
|
happy.label Happy
|
||||||
|
happy.draw LINE2
|
||||||
|
happy.type GAUGE
|
||||||
|
total.label Total
|
||||||
|
total.draw LINE1
|
||||||
|
total.type GAUGE
|
||||||
|
scary.label Scary
|
||||||
|
scary.draw LINE2
|
||||||
|
scary.type GAUGE
|
||||||
|
pruney.label Pruney
|
||||||
|
pruney.draw LINE1
|
||||||
|
pruney.type GAUGE
|
||||||
|
lonely.label Lonely
|
||||||
|
lonely.draw LINE2
|
||||||
|
lonely.type GAUGE
|
||||||
|
errory.label Errory
|
||||||
|
errory.draw LINE1
|
||||||
|
errory.type GAUGE
|
||||||
|
"""
|
||||||
|
|
||||||
|
if len(sys.argv) > 1 and sys.argv[1] == "config":
|
||||||
|
print CONFIG.rstrip()
|
||||||
|
sys.exit(0)
|
||||||
|
|
||||||
|
serverdir = os.environ["serverdir"]
|
||||||
|
fn = os.path.join(serverdir, "stats.json")
|
||||||
|
with open(fn) as f:
|
||||||
|
data = json.load(f)
|
||||||
|
if time.time() > data["valid_until"]:
|
||||||
|
sys.exit(1) # expired
|
||||||
|
|
||||||
|
r = data["rendezvous"]["all_time"]
|
||||||
|
print "happy.value", r["mailbox_moods"].get("happy", 0)
|
||||||
|
print "total.value", r["mailboxes_total"]
|
||||||
|
print "scary.value", r["mailbox_moods"].get("scary", 0)
|
||||||
|
print "pruney.value", r["mailbox_moods"].get("pruney", 0)
|
||||||
|
print "lonely.value", r["mailbox_moods"].get("lonely", 0)
|
||||||
|
print "errory.value", r["mailbox_moods"].get("errory", 0)
|
Loading…
Reference in New Issue
Block a user