mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 23:04:04 +00:00
Refactor line for conciseness
This commit is contained in:
parent
7eee5db4d2
commit
b2d76bc60a
1 changed files with 1 additions and 5 deletions
|
@ -29,11 +29,7 @@ class SNMPMonitorType extends MonitorType {
|
||||||
|
|
||||||
const varbinds = await new Promise((resolve, reject) => {
|
const varbinds = await new Promise((resolve, reject) => {
|
||||||
session.get([ monitor.snmpOid ], (error, varbinds) => {
|
session.get([ monitor.snmpOid ], (error, varbinds) => {
|
||||||
if (error) {
|
error ? reject(error) : resolve(varbinds);
|
||||||
reject(error);
|
|
||||||
} else {
|
|
||||||
resolve(varbinds);
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
log.debug("monitor", `SNMP: Received varbinds (Type: ${snmp.ObjectType[varbinds[0].type]} Value: ${varbinds[0].value}`);
|
log.debug("monitor", `SNMP: Received varbinds (Type: ${snmp.ObjectType[varbinds[0].type]} Value: ${varbinds[0].value}`);
|
||||||
|
|
Loading…
Reference in a new issue