2015-06-03 00:40:54 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
"""
|
2015-06-05 09:13:28 +02:00
|
|
|
fritzbox_uptime - A munin plugin for Linux to monitor AVM Fritzbox
|
2015-06-03 00:40:54 +02:00
|
|
|
Copyright (C) 2015 Christian Stade-Schuldt
|
|
|
|
Author: Christian Stade-Schuldt
|
|
|
|
Like Munin, this plugin is licensed under the GNU GPL v2 license
|
|
|
|
http://www.opensource.org/licenses/GPL-2.0
|
2015-06-05 09:13:28 +02:00
|
|
|
Add the following section to your munin-node's plugin configuration:
|
|
|
|
|
|
|
|
[fritzbox_*]
|
|
|
|
env.fritzbox_ip [ip address of the fritzbox]
|
|
|
|
env.fritzbox_password [fritzbox password]
|
|
|
|
|
2015-06-03 00:40:54 +02:00
|
|
|
This plugin supports the following munin configuration parameters:
|
|
|
|
#%# family=auto contrib
|
|
|
|
#%# capabilities=autoconf
|
|
|
|
"""
|
|
|
|
|
2015-06-05 09:13:28 +02:00
|
|
|
import os
|
|
|
|
import re
|
2015-06-05 00:59:24 +02:00
|
|
|
import sys
|
2015-06-05 09:13:28 +02:00
|
|
|
import fritzbox_helper as fh
|
|
|
|
|
|
|
|
PAGE = '/system/energy.lua'
|
2016-04-17 11:36:32 +02:00
|
|
|
pattern = re.compile("(\d+)\s(Tag|Stunden|Minuten)")
|
2015-06-05 00:59:24 +02:00
|
|
|
|
2015-06-03 00:40:54 +02:00
|
|
|
|
2015-06-05 09:13:28 +02:00
|
|
|
def get_uptime():
|
|
|
|
"""get the current uptime"""
|
2015-06-05 00:59:24 +02:00
|
|
|
|
2015-06-05 09:13:28 +02:00
|
|
|
server = os.environ['fritzbox_ip']
|
|
|
|
password = os.environ['fritzbox_password']
|
2015-06-05 00:59:24 +02:00
|
|
|
|
2015-06-05 09:13:28 +02:00
|
|
|
sid = fh.get_sid(server, password)
|
|
|
|
data = fh.get_page(server, sid, PAGE)
|
|
|
|
matches = re.finditer(pattern, data)
|
|
|
|
if matches:
|
|
|
|
hours = 0.0
|
|
|
|
for m in matches:
|
2016-04-17 11:36:32 +02:00
|
|
|
if m.group(2) == 'Tag':
|
2015-12-19 11:34:21 +01:00
|
|
|
hours += 24 * int(m.group(1))
|
|
|
|
if m.group(2) == "Stunden":
|
|
|
|
hours += int(m.group(1))
|
|
|
|
if m.group(2) == "Minuten":
|
|
|
|
hours += int(m.group(1)) / 60.0
|
2015-06-05 09:13:28 +02:00
|
|
|
uptime = hours / 24
|
2015-06-05 09:26:47 +02:00
|
|
|
print "uptime.value %.2f" % uptime
|
2015-06-05 00:59:24 +02:00
|
|
|
|
|
|
|
|
2015-06-03 00:40:54 +02:00
|
|
|
def print_config():
|
2015-06-05 09:13:28 +02:00
|
|
|
print "graph_title AVM Fritz!Box Uptime"
|
2015-06-03 00:58:30 +02:00
|
|
|
print "graph_args --base 1000 -l 0"
|
2015-06-03 00:40:54 +02:00
|
|
|
print 'graph_vlabel uptime in days'
|
|
|
|
print "graph_scale no'"
|
2015-06-05 09:13:28 +02:00
|
|
|
print "graph_category system"
|
2015-06-03 00:40:54 +02:00
|
|
|
print "uptime.label uptime"
|
|
|
|
print "uptime.draw AREA"
|
|
|
|
|
2015-06-05 00:59:24 +02:00
|
|
|
|
2015-06-05 09:13:28 +02:00
|
|
|
if __name__ == '__main__':
|
2015-06-03 00:40:54 +02:00
|
|
|
if len(sys.argv) == 2 and sys.argv[1] == 'config':
|
|
|
|
print_config()
|
|
|
|
elif len(sys.argv) == 2 and sys.argv[1] == 'autoconf':
|
2015-06-05 09:13:28 +02:00
|
|
|
print 'yes'
|
|
|
|
elif len(sys.argv) == 1 or len(sys.argv) == 2 and sys.argv[1] == 'fetch':
|
|
|
|
# Some docs say it'll be called with fetch, some say no arg at all
|
2015-06-03 00:40:54 +02:00
|
|
|
try:
|
2015-06-05 09:13:28 +02:00
|
|
|
get_uptime()
|
2015-06-03 00:40:54 +02:00
|
|
|
except:
|
2015-06-05 09:13:28 +02:00
|
|
|
sys.exit("Couldn't retrieve fritzbox uptime")
|