mirror of
				https://github.com/louislam/uptime-kuma.git
				synced 2025-11-04 13:46:13 +08:00 
			
		
		
		
	Separate error cases for SNMP varbind returns
This commit is contained in:
		@@ -36,10 +36,14 @@ class SNMPMonitorType extends MonitorType {
 | 
				
			|||||||
            });
 | 
					            });
 | 
				
			||||||
            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}`);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            // Verify if any varbinds were returned from the SNMP session or if the varbind type indicates a non-existent instance.
 | 
					            // Verify if any varbinds were returned from the SNMP session.
 | 
				
			||||||
            if (varbinds.length === 0 || varbinds[0].type === snmp.ObjectType.NoSuchInstance) {
 | 
					            if (varbinds.length === 0) {
 | 
				
			||||||
                throw new Error(`No varbinds returned from SNMP session (OID: ${monitor.snmpOid})`);
 | 
					                throw new Error(`No varbinds returned from SNMP session (OID: ${monitor.snmpOid})`);
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            // Check if the varbind type indicates a non-existent instance.
 | 
				
			||||||
 | 
					            if (varbinds[0].type === snmp.ObjectType.NoSuchInstance) {
 | 
				
			||||||
 | 
					                throw new Error(`The SNMP query was successful but no varbinds returned for OID: ${monitor.snmpOid}`);
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            // We restrict querying to one OID per monitor, therefore `varbinds[0]` will always contain the value we're interested in.
 | 
					            // We restrict querying to one OID per monitor, therefore `varbinds[0]` will always contain the value we're interested in.
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user