UPS check and runtime monitoring

This commit is contained in:
saqriphnix 2024-08-17 00:00:16 +03:00
parent fd2624040c
commit 3a02adde56
3 changed files with 64 additions and 2 deletions

View file

@ -47,6 +47,7 @@ async def main():
checkers = (
checker(checks.temp_check, 5 * MINUTE, client),
checker(checks.cpu_check, 5 * MINUTE, client),
checker(checks.ups_check, 5 * MINUTE, client),
checker(checks.ram_check, 1 * MINUTE, client),
checker(checks.vuln_check, 1 * DAY, client),
)