How to capture incoming, outgoing, acknowledged alarms?

0
I was using HMIRuntime.Alarming.CreateSubscription(); to get capture all the alarms (incoming, acknowledged, outgoing)   const alarmFilter = "State <> 0"; let subs = HMIRuntime.Alarming.CreateSubscription(); subs.Filter = alarmFilter;   Here I am getting incoming ( state 1) , outgoing (2) but acknowledge ( state 5) is not captured.     My Question:- why CreateSubscription is not capturing acknowledged alarms? Is there any other approach to capture all alarms ?   Note :- I have other working solution by using HMIRuntime.Alarming.GetActiveAlarms() and running it cyclically. But want to try with other approaches, because of the performance.
asked
0 answers