Do you have any information about the following?
SNMP trap sending process” in the log monitoring function stops 497 days after system startup.
Does this phenomenon also occur in DX NetOps?
“SNMP trap sending process” in the log monitoring function stops after 497 days after system startup.
-
The “org.snmp4j.mp.SnmpConstants.sysUpTime” is the operating time of the log monitoring process defined as a parameter of SNMP4J.
JavaDoc specified value “new org.snmp4j.smi.TimeTicks(long)”, but not the MAX value of long (9223372036854775807),
If the value is set beyond the UnsignedInteger MAX value (4294967295),
SNMP4J would throw an exception “throw new IllegalArgumentException(”Argument must be an unsigned 32bit value“)”.
The SNMP trap sending process (thread) in the log monitoring function was terminated when the exception occurred.
-