NetXMS Support Forum

English Support => General Support => Topic started by: afilnara on December 07, 2016, 10:02:19 AM

Title: How to set event Severity depending on SNMP variable value?
Post by: afilnara on December 07, 2016, 10:02:19 AM
Hello!

My NetXMS server accepts traps containing nine variables, including variable "severity".

I need to set event's severity according to value of that variable.
Is there any possibility to do this (using scripts, for example)?

Something like

if ( $event->parameters[2] == "7")
{
$event->severity = 1;
}

(this script does not work, execution error: Unknown object's attribute.
But according to wiki https://wiki.netxms.org/wiki/NXSL:Event there is the Int32 attribute named "severity" for the object "event", so why do i get this error "Unknown object's attribute"? )
Title: Re: How to set event Severity depending on SNMP variable value?
Post by: MarcusH on December 09, 2016, 10:58:17 AM
severity is the attribute, setSeverity is the method