NetXMS Support Forum

English Support => General Support => Topic started by: boozecow on March 09, 2016, 05:19:05 PM

Title: New Discovered Node - Alert
Post by: boozecow on March 09, 2016, 05:19:05 PM
Is there a way to be notified when a new node is discovered in a network ?

Title: Re: New Discovered Node - Alert
Post by: Victor Kirhenshtein on March 09, 2016, 10:51:41 PM
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
Title: Re: New Discovered Node - Alert
Post by: boozecow on March 14, 2016, 02:45:13 PM
Thanks a lot !