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

60 lines
1.9 KiB
Python
Raw Normal View History

2015-06-05 09:12:59 +02:00
#!/usr/bin/env python
"""
2015-06-05 09:13:18 +02:00
fritzbox_connection_uptime - A munin plugin for Linux to monitor AVM Fritzbox connection uptime
2015-06-05 09:12:59 +02:00
Copyright (C) 2015 Christian Stade-Schuldt
Author: Christian Stade-Schuldt
2020-07-05 22:31:19 +02:00
Updated to fritzconnection library version 1.3.1
Copyright (C) 2020 Oliver Edelamnn
Author: Oliver Edelmann
2015-06-05 09:12:59 +02:00
Like Munin, this plugin is licensed under the GNU GPL v2 license
http://www.opensource.org/licenses/GPL-2.0
Like Munin, this plugin is licensed under the GNU GPL v2 license
http://www.opensource.org/licenses/GPL-2.0
This plugin requires the fritzconnection plugin. To install it using pip:
pip install fritzconnection
This plugin supports the following munin configuration parameters:
#%# family=auto contrib
#%# capabilities=autoconf
"""
2016-05-17 01:38:24 +02:00
import os
2015-06-05 09:12:59 +02:00
import sys
2020-07-05 22:31:19 +02:00
from fritzconnection.lib.fritzstatus import FritzStatus
2015-06-05 09:12:59 +02:00
def print_values():
try:
2020-07-05 22:31:19 +02:00
conn = FritzStatus(address=os.environ['fritzbox_ip'], password=os.environ['fritzbox_password'])
2015-06-05 09:12:59 +02:00
except Exception as e:
sys.exit("Couldn't get connection uptime")
2020-07-05 22:31:19 +02:00
uptime = conn.uptime
print('uptime.value %.2f' % (int(uptime) / 3600.0))
2015-06-05 09:12:59 +02:00
def print_config():
2017-11-04 17:04:26 +01:00
print("graph_title AVM Fritz!Box Connection Uptime")
print("graph_args --base 1000 -l 0")
2020-07-05 22:31:19 +02:00
print('graph_vlabel uptime in hours')
2017-11-04 17:04:26 +01:00
print("graph_scale no'")
print("graph_category network")
print("uptime.label uptime")
print("uptime.draw AREA")
if os.environ.get('host_name'):
2017-11-04 17:04:26 +01:00
print("host_name " + os.environ['host_name'])
2015-06-05 09:12:59 +02:00
if __name__ == "__main__":
if len(sys.argv) == 2 and sys.argv[1] == 'config':
print_config()
elif len(sys.argv) == 2 and sys.argv[1] == 'autoconf':
2017-11-04 17:04:26 +01:00
print("yes") # Some docs say it'll be called with fetch, some say no arg at all
2015-06-05 09:12:59 +02:00
elif len(sys.argv) == 1 or (len(sys.argv) == 2 and sys.argv[1] == 'fetch'):
try:
print_values()
except:
sys.exit("Couldn't retrieve fritzbox connection uptime")