Report of Daily Active Alarms

Hi

I need to create a daily PDF report of tha active alarms.
I am using this settings. In the Reporting secton.

When the Alarm is Acknowledge and still Active, I do not see it in the
Report.

Anybody can tell me why?

Also What would be the settings to have only Active Alarms which are Acknowledged and
UnAcknowledge?

Thank you

I usually have better luck scriping the data source:

def updateData(data, sample):
	# Get all active alarms
	data['Daily_alarms'] = system.alarm.queryStatus(state = [2,3]).dataset

@JordanCClark Thank you for the solution

1 Like