Is there a way to be notified when a new node is discovered in a network ?
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
Thanks a lot !