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 57aa4518 authored by thl-cmk's avatar thl-cmk :flag_na:
Browse files

Delete fritzbox_smarthome.py

parent 82bd0910
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# License: GNU General Public License v2
#
# Author: thl-cmk[at]outlook[dot]com
# URL : https://thl-cmk.hopto.org
# Date : 2023-12-28
# File : fritzbox_smarthome.py (metrics)
from cmk.gui.i18n import _
from cmk.gui.plugins.metrics.utils import (
metric_info,
graph_info,
check_metrics,
perfometer_info,
)
check_metrics["check_mk-fritzbox_smarthome_thermostat_single"] = {
"temp_current": {"auto_graph": False},
"temp_target": {"auto_graph": False},
"temp_economic": {"auto_graph": False},
"temp_comfort": {"auto_graph": False},
}
check_metrics["check_mk-fritzbox_smarthome_thermostat_multiple"] = {
"temp_current": {"auto_graph": False},
"temp_target": {"auto_graph": False},
"temp_economic": {"auto_graph": False},
"temp_comfort": {"auto_graph": False},
}
metric_info["temp_current"] = {
"title": _("Temperature current"),
"color": "26/a",
"unit": "c",
}
metric_info["temp_target"] = {
"title": _("Temperature target"),
"color": "21/a",
"unit": "c",
}
metric_info["temp_economic"] = {
"title": _("Temperature economic"),
"color": "31/a",
"unit": "c",
}
metric_info["temp_comfort"] = {
"title": _("Temperature comfort"),
"color": "11/a",
"unit": "c",
}
graph_info["fritzbox_smart_home_temp_control"] = {
"title": _("Thermostat temperature control"),
"metrics": [
("temp_current", "area"),
("temp_target", "line"),
],
"scalars": [
("temp_comfort", "Temperature comfort"),
("temp_economic", "Temperature economic"),
],
"optional_metrics": [
"temp_target",
],
}
perfometer_info.append(('stacked', [
{
'type': 'linear',
'segments': ['temp_current'],
'total': 50,
},
{
'type': 'linear',
'segments': ['temp_target'],
'total': 50,
}
]))
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