Yes, I think you are right - if it's SYS_NODE_UNREACHABLE, then alarm is not created and timers are not set.
Actually SYS_NODE_UP event has parameter at index 1 which is set to 1 if node is returning from "unreachable" state and 0 if from "down", so you can filter by that in your recovery EPP rule by the following script:
return $event.getParameter("reason") != 1;
Actually SYS_NODE_UP event has parameter at index 1 which is set to 1 if node is returning from "unreachable" state and 0 if from "down", so you can filter by that in your recovery EPP rule by the following script:
return $event.getParameter("reason") != 1;
)