mirror of
https://forgejo.altau.su/lego/lego-monitoring.git
synced 2026-03-10 12:45:19 +00:00
41 lines
1.9 KiB
Python
41 lines
1.9 KiB
Python
#!/usr/bin/env python3
|
||
import asyncio
|
||
from os import environ
|
||
from sys import argv
|
||
|
||
from alerting import alerts
|
||
|
||
type_priority_map = {
|
||
"ONLINE": alerts.Severity.INFO, # UPS is back online
|
||
"ONBATT": alerts.Severity.WARNING, # UPS is on battery
|
||
"LOWBATT": alerts.Severity.CRITICAL, # UPS is on battery and has a low battery (is critical)
|
||
"FSD": alerts.Severity.CRITICAL, # UPS is being shutdown by the primary (FSD = "Forced Shutdown")
|
||
"COMMOK": alerts.Severity.INFO, # Communications established with the UPS
|
||
"COMMBAD": alerts.Severity.WARNING, # Communications lost to the UPS
|
||
"SHUTDOWN": alerts.Severity.CRITICAL, # The system is being shutdown
|
||
"REPLBATT": alerts.Severity.WARNING, # The UPS battery is bad and needs to be replaced
|
||
"NOCOMM": alerts.Severity.WARNING, # A UPS is unavailable (can’t be contacted for monitoring)
|
||
"NOPARENT": alerts.Severity.CRITICAL, # upsmon parent process died - shutdown impossible
|
||
"CAL": alerts.Severity.INFO, # UPS calibration in progress
|
||
"NOTCAL": alerts.Severity.INFO, # UPS calibration finished
|
||
"OFF": alerts.Severity.CRITICAL, # UPS administratively OFF or asleep
|
||
"NOTOFF": alerts.Severity.INFO, # UPS no longer administratively OFF or asleep
|
||
"BYPASS": alerts.Severity.WARNING, # UPS on bypass (powered, not protecting)
|
||
"NOTBYPASS": alerts.Severity.INFO, # UPS no longer on bypass
|
||
None: alerts.Severity.CRITICAL, # unknown alert type
|
||
}
|
||
|
||
|
||
async def main():
|
||
"""Sends an alert about a UPS event. Meant to be used from upsmon with NOTIFYCMD"""
|
||
if len(argv) != 2:
|
||
raise Exception("provide exactly one argument: alert message")
|
||
message = argv[1]
|
||
typestr = environ.get("NOTIFYTYPE", None)
|
||
severity = type_priority_map[typestr]
|
||
alert = alerts.Alert(alert_type=alerts.AlertType.UPS, message=message, severity=severity)
|
||
await alerts.send_alert(alert)
|
||
|
||
|
||
if __name__ == "__main__":
|
||
asyncio.run(main())
|