mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 14:54:05 +00:00
Default: invalid condition error
Co-Authored-By: Frank Elsinga <frank.elsinga@tum.de>
This commit is contained in:
parent
0384b34007
commit
997791bc78
1 changed files with 1 additions and 3 deletions
|
@ -70,9 +70,7 @@ class SNMPMonitorType extends MonitorType {
|
||||||
heartbeat.status = snmpValue.toString().includes(snmpControlValue.toString()) ? UP : DOWN;
|
heartbeat.status = snmpValue.toString().includes(snmpControlValue.toString()) ? UP : DOWN;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
heartbeat.status = DOWN;
|
throw new Error(`Invalid condition ${monitor.snmpCondition}`);
|
||||||
heartbeat.msg = `Invalid condition: ${monitor.snmpCondition}`;
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
heartbeat.msg = "SNMP value " + (heartbeat.status ? "passes" : "does not pass") + ` comparison: ${value.toString()} ${monitor.snmpCondition} ${snmpControlValue}`;
|
heartbeat.msg = "SNMP value " + (heartbeat.status ? "passes" : "does not pass") + ` comparison: ${value.toString()} ${monitor.snmpCondition} ${snmpControlValue}`;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue