Matt Visnovsky
2024-05-05 15:47:43 -06:00
parent 9053b48030
commit 4386d0afad
2 changed files with 6 additions and 6 deletions

View File

@@ -1320,11 +1320,13 @@ message HealthCheckResponse {
}
}
// Set default timeout
// Set a default timeout of 1 second for SNMP monitors when querying a single OID.
// Since we're only querying a single OID, a shorter timeout is sufficient to ensure timely responses
// without unnecessary delays. This helps keep the monitoring process lightweight and efficient.
if (this.monitor.type === "snmp") {
this.monitor.timeout = 1;
} else {
this.monitor.timeout = 48;
this.monitor.timeout = 48; // Default timeout for other monitor types
}
// Set default SNMP version