We have noticed that alarms from the vmware probe stopped being sent for a period of time. So some alarms arrived with a considerable delay.
The following message was observed in the vmware.log:
java.util.concurrent.ExecutionException: java.lang.OutOfMemoryError: GC overhead limit exceeded
The error message java.lang.OutOfMemoryError: GC overhead limit exceeded strongly suggests that the Java process handling the VMware probe is running out of memory, specifically related to garbage collection (GC). The "GC overhead limit exceeded" message indicates that the JVM (Java Virtual Machine) is spending too much time on garbage collection without being able to free up enough memory, which is typically a sign of insufficient heap space allocated for the process.
ACTIONS TO TAKE