2022-09-29 17:38:59 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
import argparse
|
2022-11-26 11:11:03 -05:00
|
|
|
import dataclasses
|
2022-09-29 17:38:59 -04:00
|
|
|
import logging
|
|
|
|
import sys
|
|
|
|
from urllib.parse import urljoin
|
2022-11-26 19:44:26 -05:00
|
|
|
from typing import Optional
|
2022-09-29 17:38:59 -04:00
|
|
|
|
|
|
|
import requests
|
|
|
|
import nagiosplugin
|
|
|
|
|
|
|
|
_log = logging.getLogger("nagiosplugin")
|
|
|
|
|
|
|
|
|
2022-11-26 11:11:03 -05:00
|
|
|
@dataclasses.dataclass
|
|
|
|
class Entities(nagiosplugin.Resource):
|
|
|
|
url: str
|
|
|
|
token: str
|
2022-11-26 19:42:49 -05:00
|
|
|
device_class: str
|
2022-11-26 19:40:57 -05:00
|
|
|
min: float
|
|
|
|
max: float
|
2022-11-26 19:44:08 -05:00
|
|
|
filters: list[str]
|
2022-11-26 19:44:26 -05:00
|
|
|
attribute: Optional[str]
|
2022-09-29 17:38:59 -04:00
|
|
|
|
|
|
|
def hass_get(self, endpoint: str) -> requests.Response:
|
|
|
|
headers = {
|
|
|
|
"Authorization": "Bearer " + self.token,
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
}
|
|
|
|
|
|
|
|
r = requests.get(urljoin(self.url, endpoint), headers=headers)
|
|
|
|
if not r.ok:
|
|
|
|
raise Exception("Failed to query Home Assistant API: " + r.text)
|
|
|
|
|
|
|
|
return r.json()
|
|
|
|
|
|
|
|
def check_api(self):
|
|
|
|
message = self.hass_get("/api/").get("message")
|
|
|
|
if message != "API running.":
|
|
|
|
print("ERROR: " + message)
|
|
|
|
sys.exit(1)
|
|
|
|
else:
|
|
|
|
print("OK: " + message)
|
|
|
|
|
|
|
|
def probe(self):
|
|
|
|
response = self.hass_get("/api/states")
|
|
|
|
for state in response:
|
2022-11-26 19:44:08 -05:00
|
|
|
if state["attributes"].get("device_class") == self.device_class and all(
|
|
|
|
state["attributes"].get(k) == v for k, v in self.filters
|
|
|
|
):
|
2022-11-26 19:44:26 -05:00
|
|
|
if self.attribute is not None:
|
|
|
|
value = state["attributes"].get(self.attribute, -1)
|
|
|
|
uom = None
|
|
|
|
else:
|
|
|
|
value = float(state["state"]) if state["state"].isnumeric() else -1
|
|
|
|
uom = state["attributes"].get("unit_of_measurement")
|
|
|
|
|
2022-09-29 17:38:59 -04:00
|
|
|
if state["state"] == "unavailable":
|
|
|
|
_log.info(f"{state['entity_id']} unavailable")
|
|
|
|
yield nagiosplugin.Metric(
|
|
|
|
state["entity_id"],
|
2022-11-26 19:44:26 -05:00
|
|
|
value,
|
|
|
|
uom,
|
2022-11-26 19:42:49 -05:00
|
|
|
context=self.device_class,
|
2022-11-26 19:40:57 -05:00
|
|
|
min=self.min,
|
|
|
|
max=self.max,
|
2022-09-29 17:38:59 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2022-11-26 19:44:08 -05:00
|
|
|
def key_value(arg: str):
|
|
|
|
k, _, v = arg.partition("=")
|
|
|
|
return k, v
|
|
|
|
|
|
|
|
|
2022-09-29 17:38:59 -04:00
|
|
|
@nagiosplugin.guarded
|
|
|
|
def main():
|
|
|
|
argp = argparse.ArgumentParser(description=__doc__)
|
2022-11-26 19:34:37 -05:00
|
|
|
argp.add_argument(
|
|
|
|
"-t", "--token", required=True, type=str, help="API token for Home Assistant"
|
|
|
|
)
|
|
|
|
argp.add_argument(
|
|
|
|
"-u", "--url", required=True, type=str, help="URL for Home Assistant"
|
|
|
|
)
|
|
|
|
argp.add_argument("-v", "--verbose", action="count", default=0)
|
|
|
|
|
2022-11-26 19:42:49 -05:00
|
|
|
argp.add_argument(
|
|
|
|
"-d",
|
|
|
|
"--device-class",
|
|
|
|
type=str,
|
|
|
|
required=True,
|
|
|
|
help="Device class of entities to monitor",
|
|
|
|
)
|
2022-09-29 17:38:59 -04:00
|
|
|
argp.add_argument(
|
|
|
|
"-w",
|
|
|
|
"--warning",
|
|
|
|
metavar="RANGE",
|
2022-11-26 19:34:06 -05:00
|
|
|
required=True,
|
2022-09-29 17:38:59 -04:00
|
|
|
help="return warning if battery percentage is outside RANGE",
|
|
|
|
)
|
|
|
|
argp.add_argument(
|
|
|
|
"-c",
|
|
|
|
"--critical",
|
|
|
|
metavar="RANGE",
|
2022-11-26 19:34:06 -05:00
|
|
|
required=True,
|
2022-09-29 17:38:59 -04:00
|
|
|
help="return critical if battery percentage is outside RANGE",
|
|
|
|
)
|
2022-11-26 19:40:57 -05:00
|
|
|
argp.add_argument(
|
|
|
|
"--min",
|
|
|
|
type=float,
|
|
|
|
help="Min for performance data",
|
|
|
|
)
|
|
|
|
argp.add_argument(
|
|
|
|
"--max",
|
|
|
|
type=float,
|
|
|
|
help="Max for performance data",
|
|
|
|
)
|
2022-11-26 19:44:26 -05:00
|
|
|
argp.add_argument(
|
|
|
|
"-a", "--attribute", type=str, help="Check attribute instead of value"
|
|
|
|
)
|
2022-11-26 19:44:08 -05:00
|
|
|
argp.add_argument(
|
|
|
|
"-f",
|
|
|
|
"--filter",
|
|
|
|
type=key_value,
|
|
|
|
default=[],
|
|
|
|
nargs="*",
|
|
|
|
help="Filter by 'attribute=value'",
|
|
|
|
)
|
2022-11-26 19:34:37 -05:00
|
|
|
|
2022-09-29 17:38:59 -04:00
|
|
|
args = argp.parse_args()
|
|
|
|
|
|
|
|
check = nagiosplugin.Check(
|
2022-11-26 19:40:57 -05:00
|
|
|
Entities(
|
|
|
|
args.url,
|
|
|
|
args.token,
|
2022-11-26 19:42:49 -05:00
|
|
|
args.device_class,
|
2022-11-26 19:40:57 -05:00
|
|
|
args.min,
|
|
|
|
args.max,
|
2022-11-26 19:44:08 -05:00
|
|
|
args.filter,
|
2022-11-26 19:44:26 -05:00
|
|
|
args.attribute,
|
2022-11-26 19:40:57 -05:00
|
|
|
),
|
|
|
|
nagiosplugin.ScalarContext(args.device_class, args.warning, args.critical),
|
2022-09-29 17:38:59 -04:00
|
|
|
)
|
|
|
|
check.main(args.verbose)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|