mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-01-09 15:43:01 -06:00
Default: invalid condition error
Co-Authored-By: Frank Elsinga <frank.elsinga@tum.de>
This commit is contained in:
parent
0384b34007
commit
997791bc78
@ -70,9 +70,7 @@ class SNMPMonitorType extends MonitorType {
|
||||
heartbeat.status = snmpValue.toString().includes(snmpControlValue.toString()) ? UP : DOWN;
|
||||
break;
|
||||
default:
|
||||
heartbeat.status = DOWN;
|
||||
heartbeat.msg = `Invalid condition: ${monitor.snmpCondition}`;
|
||||
break;
|
||||
throw new Error(`Invalid condition ${monitor.snmpCondition}`);
|
||||
}
|
||||
heartbeat.msg = "SNMP value " + (heartbeat.status ? "passes" : "does not pass") + ` comparison: ${value.toString()} ${monitor.snmpCondition} ${snmpControlValue}`;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user