You can clear alarms using computed attributes.
Hi Anton, thanks for your reply.
alarm != null ? (alarm.toLowerCase() == 'Tampering' || alarm.toLowerCase() == 'Low Battery' ? null : alarm) : null
I'm using this expression, but it's not clearing the alarms; the alarm icon for each device is still appearing.


It's definitely incorrect. You should do something like this:
alarm != null ? (alarm == 'tampering' || alarm == 'lowBattery' ? null : alarm) : null
With your expression, it works perfectly. Thank you very much, Anton.
Hi everyone, I have the following situation: I have some devices that are reporting tamper and low battery alarms, but that's not actually the case.
How can I ignore these alarms in Traccar, specifically on the alarm icon of each device?