I am using netxms version 1.2.13 are there any limitations I should be aware of? It could be an error on my part, but it seems like I am unable to create a persistent storage variable within the filtering script. Every time the alarm triggers the script runs fresh with no memory of the defined variables from the previous trigger. I see in the version 2.2 admin guide there is a "persistent storage" view within the "configuration" drop down and this version 1.2.13 does not have a "persistent storage" view.
As a test I entered the below code in the filtering script. The result was the action was never triggered. How can I make x persistent?
On the hyperlink you shared it says FindAlarmByKey is since version 2.0? Let me know if I just need to upgrade!
As a test I entered the below code in the filtering script. The result was the action was never triggered. How can I make x persistent?
Code Select
if ( x != "" ) return false;
x=1;
return true;On the hyperlink you shared it says FindAlarmByKey is since version 2.0? Let me know if I just need to upgrade!