The following code fetches the list of alarms that was created between those specified dates which are now in closed state.
def alarmCriteria = new AlarmCriteria()
alarmCriteria.state = AlarmState.CLOSED
def betweenQuery = new BetweenDateQuery()
betweenQuery.start = Date.parse('yyyy-MM-dd', '2017-03-26 ')
betweenQuery.end = Date.parse('yyyy-MM-dd', '2017-03-27')
alarmCriteria.date = betweenQuery
results = alarmBridge.find(alarmCriteria)
How to fetch the list of alarms that was closed during the specified date interval?
Regards
Arunkumar D
Arunkumar,
Are these alarms that are stored in a stream/datatable or in the system alters stream? Depending on this it will be different methods to access or update anything.
Thanks,
Adam