New Discovered Node - Alert

Started by boozecow, March 09, 2016, 05:19:05 PM

Previous topic - Next topic

boozecow

Is there a way to be notified when a new node is discovered in a network ?


Victor Kirhenshtein

System generates event SYS_NODE_ADDED whenever new node is added to the system. If node added by discovery process, event will have first parameter set to 1, so you can create rule which will match event SYS_NODE_ADDED and with this matching script:

return $event->parameters[1] == 1;

In action part you can generate alarm or send notifications as usual.

Best regards,
Victor

boozecow