Hello All,
I am trying to construct a trigger, which fires up if a switch port goes down and in the same time port description is an empty string (no port description). That's because I am not interested in ports which have no description. The problem is how to check if the value of the port description item is an empty string.
Expressions like:
generates error Incorrect trigger expression. [ ... #'']
Sorry if the solution is trivial but I spend the last hour reading the manual, forums and googling without success.
Thanks in advance.
I am trying to construct a trigger, which fires up if a switch port goes down and in the same time port description is an empty string (no port description). That's because I am not interested in ports which have no description. The problem is how to check if the value of the port description item is an empty string.
Expressions like:
Code:
({sw:Port 199 State.last(0)}=2)&({sw:Port 199 Desc.last(0)}#'')
Sorry if the solution is trivial but I spend the last hour reading the manual, forums and googling without success.
Thanks in advance.
Comment