Acknowledging Alarms and where its recorded

I have two alarm tables but i not sure where the alarms get acknowledged. I wanted to filter my alarm screens based on processes and if there acknoledged or not. I looked at the tables but nothing stood out.

Does anyone have any suggestions where to look?

I was looking at alarm_events and alarm_event_data

Thanks

Acknowledgement is an event type, so SELECT * FROM alarm_events WHERE eventtype = 2 would give you all the acknowledgement events.

Documentation here.