Collection of CheckMK checks (see https://checkmk.com/). All checks and plugins are provided as is. Absolutely no warranty. Send any comments to thl-cmk[at]outlook[dot]com

Skip to content
Snippets Groups Projects
Commit df0c1acb authored by thl-cmk's avatar thl-cmk :flag_na:
Browse files

update project

parent 66ffb00f
No related branches found
No related tags found
No related merge requests found
[PACKAGE]: ../../raw/master/mkp/fritzbox_smarthome-0.8.6-20240106.mkp "fritzbox_smarthome-0.8.6-20240106.mkp"
[PACKAGE]: ../../raw/master/mkp/fritzbox_smarthome-0.8.7-20240108.mkp "fritzbox_smarthome-0.8.7-20240108.mkp"
# AVM Fritz!Box Smarthome
This repository contains a additional check_MK Fritz!Box Agent which can gather informations over the AVM AHA HTTP Interface about SmartHome Devices connected to an Fritz!Box.
......
File added
......@@ -178,6 +178,7 @@ def _cost_period_x(
period_name: str,
current_period: int,
rate_name: str,
metric_name: str,
last_reading: float,
precision: int,
message: str,
......@@ -189,21 +190,22 @@ def _cost_period_x(
if stored_period := value_store.get(period_name):
value_store[period_name] = current_period
cost = last_reading / 1000 * cost_kwh
if current_period != stored_period:
value_store[period_name] = current_period
value_store[rate_name] = 0
value = last_reading
value_store[rate_name] = cost
else:
value = value_store.get(rate_name, 0) + last_reading
value_store[rate_name] = value
cost = value_store.get(rate_name, 0) + cost
value_store[rate_name] = cost
value = round((value / 1000 * cost_kwh), precision)
cost = round(cost, precision)
yield Result(
state=State.OK,
notice=message.replace('__value__', f'{value:.4f}')
notice=message.replace('__value__', f'{cost:.4f}')
)
yield Metric(name=rate_name, value=value)
yield Metric(name=metric_name, value=cost)
def check_fritzbox_smarthome_energy_single(
......@@ -272,7 +274,8 @@ def check_fritzbox_smarthome_energy_single(
value_store=value_store,
period_name='current_hour',
current_period=loca_time.tm_hour,
rate_name='cost_per_hour',
rate_name='cost_this_hour', # don't reuse -> cost_per_hour
metric_name='cost_per_hour',
last_reading=energy,
precision=6,
message=f'Hour_: __value__{unit_sign}',
......@@ -282,7 +285,8 @@ def check_fritzbox_smarthome_energy_single(
value_store=value_store,
period_name='current_day',
current_period=loca_time.tm_mday,
rate_name='cost_per_day',
rate_name='cost_this_day', # don't reuse -> cost_per_day
metric_name='cost_per_day',
last_reading=energy,
precision=4,
message=f'Day__: __value__{unit_sign}',
......@@ -292,7 +296,8 @@ def check_fritzbox_smarthome_energy_single(
value_store=value_store,
period_name='current_month',
current_period=loca_time.tm_mon,
rate_name='cost_per_month',
rate_name='cost_this_month', # don't reuse -> cost_per_month
metric_name='cost_per_month',
last_reading=energy,
precision=4,
message=f'Month: __value__{unit_sign}',
......@@ -302,7 +307,8 @@ def check_fritzbox_smarthome_energy_single(
value_store=value_store,
period_name='current_year',
current_period=loca_time.tm_year,
rate_name='cost_per_year',
rate_name='cost_this_year', # don't reuse -> cost_per_year
metric_name='cost_per_year',
last_reading=energy,
precision=4,
message=f'Year_: __value__{unit_sign}',
......
......@@ -50,7 +50,7 @@
'plugins/views/fritzbox_smarthome.py']},
'name': 'fritzbox_smarthome',
'title': 'Fritz!Box SmartHome',
'version': '0.8.6-20240106',
'version': '0.8.7-20240108',
'version.min_required': '2.2.0b1',
'version.packaged': '2.2.0p17',
'version.usable_until': None}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment