fritzbox-munin/fritzbox_wifi_devices.py

67 lines
2.1 KiB
Python
Raw Normal View History

2015-06-04 22:28:25 +02:00
#!/usr/bin/env python
2015-06-04 22:11:29 +02:00
"""
fritzbox_wifi_devices - A munin plugin for Linux to monitor AVM Fritzbox
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-04 22:11:29 +02:00
Like Munin, this plugin is licensed under the GNU GPL v2 license
http://www.opensource.org/licenses/GPL-2.0
2015-06-04 22:28:25 +02:00
Add the following section to your munin-node's plugin configuration:
2015-06-04 22:11:29 +02:00
[fritzbox_*]
env.fritzbox_ip [ip address of the fritzbox]
2015-06-04 22:28:25 +02:00
env.fritzbox_password [fritzbox password]
2015-06-04 22:11:29 +02:00
This plugin supports the following munin configuration parameters:
#%# family=auto contrib
#%# capabilities=autoconf
"""
import os
import sys
2017-09-06 22:41:09 +02:00
2020-07-05 22:31:19 +02:00
from fritzconnection.lib.fritzwlan import FritzWLAN
2015-06-04 22:11:29 +02:00
def get_connected_wifi_devices():
"""gets the numbrer of currently connected wifi devices"""
2020-07-05 22:31:19 +02:00
try:
conn = FritzWLAN(address=os.environ['fritzbox_ip'], password=os.environ['fritzbox_password'])
except Exception as e:
sys.exit("Couldn't get connection uptime")
2015-06-04 22:11:29 +02:00
2020-07-05 22:31:19 +02:00
connected_devices = conn.host_number
print('wifi.value %d' % connected_devices)
2015-06-04 22:11:29 +02:00
def print_config():
2017-11-04 17:04:26 +01:00
print('graph_title AVM Fritz!Box Connected Wifi Devices')
print('graph_vlabel Number of devices')
print('graph_args --base 1000')
print('graph_category network')
print('graph_order wifi')
print('wifi.label Wifi Connections on 2.4 & 5 Ghz')
print('wifi.type GAUGE')
print('wifi.graph LINE1')
print('wifi.info Wifi Connections on 2.4 & 5 Ghz')
if os.environ.get('host_name'):
2017-11-04 17:04:26 +01:00
print("host_name " + os.environ['host_name'])
2015-06-04 22:11:29 +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')
2015-06-04 22:11:29 +02:00
elif len(sys.argv) == 1 or len(sys.argv) == 2 and sys.argv[1] == 'fetch':
2015-06-05 00:59:24 +02:00
# Some docs say it'll be called with fetch, some say no arg at all
2015-06-04 22:11:29 +02:00
try:
get_connected_wifi_devices()
except:
sys.exit("Couldn't retrieve connected fritzbox wifi devices")