fritzbox-munin/fritzbox_cpu_temperature.py

68 lines
2.0 KiB
Python
Raw Normal View History

2015-06-04 23:59:44 +02:00
#!/usr/bin/env python
"""
fritzbox_cpu_temperature - A munin plugin for Linux to monitor AVM Fritzbox
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
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]
This plugin supports the following munin configuration parameters:
#%# family=auto contrib
#%# capabilities=autoconf
"""
import os
import re
import sys
import fritzbox_helper as fh
PAGE = '/system/ecostat.lua'
pattern = re.compile('Query\s=\s"(\d{1,3})')
2015-06-04 23:59:44 +02:00
def get_cpu_temperature():
"""get the current cpu temperature"""
2015-06-05 00:59:24 +02:00
2015-06-04 23:59:44 +02:00
server = os.environ['fritzbox_ip']
password = os.environ['fritzbox_password']
2015-06-05 00:59:24 +02:00
2017-11-04 17:04:26 +01:00
session_id = fh.get_session_id(server, password)
2018-07-04 01:00:36 +02:00
data = fh.get_page_content(server, session_id, PAGE)
2015-06-05 00:59:24 +02:00
2015-06-04 23:59:44 +02:00
m = re.search(pattern, data)
if m:
2017-11-04 17:04:26 +01:00
print('temp.value %d' % (int(m.group(1))))
2015-06-04 23:59:44 +02:00
def print_config():
2017-11-04 17:04:26 +01:00
print("graph_title AVM Fritz!Box CPU temperature")
print("graph_vlabel degrees Celsius")
print("graph_category sensors")
print("graph_order tmp")
print("graph_scale no")
print("temp.label CPU temperature")
print("temp.type GAUGE")
print("temp.graph LINE1")
print("temp.min 0")
print("temp.info Fritzbox CPU temperature")
if os.environ.get('host_name'):
2017-11-04 17:04:26 +01:00
print("host_name " + os.environ['host_name'])
2015-06-04 23:59:44 +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 23:59:44 +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 23:59:44 +02:00
try:
get_cpu_temperature()
except:
sys.exit("Couldn't retrieve fritzbox cpu temperature")