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

add fritzbox uptime plugin

This commit is contained in:
Christian Stade-Schuldt 2015-06-05 09:13:28 +02:00
parent 806098f7fc
commit f33ec12b77

57
fritzbox_uptime.py Executable file → Normal file
View File

@ -1,51 +1,68 @@
#!/usr/bin/env python #!/usr/bin/env python
""" """
fritzbox_uptime - A munin plugin for Linux to monitor AVM Fritzbox connection uptime fritzbox_uptime - A munin plugin for Linux to monitor AVM Fritzbox
Copyright (C) 2015 Christian Stade-Schuldt Copyright (C) 2015 Christian Stade-Schuldt
Author: Christian Stade-Schuldt Author: Christian Stade-Schuldt
Like Munin, this plugin is licensed under the GNU GPL v2 license Like Munin, this plugin is licensed under the GNU GPL v2 license
http://www.opensource.org/licenses/GPL-2.0 http://www.opensource.org/licenses/GPL-2.0
Like Munin, this plugin is licensed under the GNU GPL v2 license Add the following section to your munin-node's plugin configuration:
http://www.opensource.org/licenses/GPL-2.0
This plugin requires the fritzconnection plugin. To install it using pip: [fritzbox_*]
pip install fritzconnection env.fritzbox_ip [ip address of the fritzbox]
env.fritzbox_password [fritzbox password]
This plugin supports the following munin configuration parameters: This plugin supports the following munin configuration parameters:
#%# family=auto contrib #%# family=auto contrib
#%# capabilities=autoconf #%# capabilities=autoconf
""" """
import os
import re
import sys import sys
import fritzbox_helper as fh
from fritzconnection import FritzConnection PAGE = '/system/energy.lua'
pattern = re.compile(".*/(.*uptime_\w+?)\".*=.*\"(.*?)\"")
def print_values(): def get_uptime():
try: """get the current uptime"""
conn = FritzConnection()
except Exception as e:
sys.exit("Couldn't get connection uptime")
uptime = conn.call_action('WANIPConnection', 'GetStatusInfo')['NewUptime'] server = os.environ['fritzbox_ip']
print ('uptime.value %.2f' % (int(uptime) / 86400.0)) password = os.environ['fritzbox_password']
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:
if m.group(1) == "uptime_hours":
hours += int(m.group(2))
if m.group(1) == "uptime_minutes":
hours += int(m.group(2)) / 60.0
uptime = hours / 24
print "uptime.value %.2f" % (uptime)
def print_config(): def print_config():
print "graph_title AVM Fritz!Box Connection Uptime" print "graph_title AVM Fritz!Box Uptime"
print "graph_args --base 1000 -l 0" print "graph_args --base 1000 -l 0"
print 'graph_vlabel uptime in days' print 'graph_vlabel uptime in days'
print "graph_scale no'" print "graph_scale no'"
print "graph_category network" print "graph_category system"
print "uptime.label uptime" print "uptime.label uptime"
print "uptime.draw AREA" print "uptime.draw AREA"
if __name__ == "__main__": if __name__ == '__main__':
if len(sys.argv) == 2 and sys.argv[1] == 'config': if len(sys.argv) == 2 and sys.argv[1] == 'config':
print_config() print_config()
elif len(sys.argv) == 2 and sys.argv[1] == 'autoconf': elif len(sys.argv) == 2 and sys.argv[1] == 'autoconf':
print "yes" # Some docs say it'll be called with fetch, some say no arg at all print 'yes'
elif len(sys.argv) == 1 or (len(sys.argv) == 2 and sys.argv[1] == 'fetch'): 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
try: try:
print_values() get_uptime()
except: except:
sys.exit("Couldn't retrieve fritzbox connection uptime") sys.exit("Couldn't retrieve fritzbox uptime")