Update Alarm Label While Alarm Stays Active

Hello all,

I'm wondering if you have any suggestions on if it is possible (and how) to have a continuously updating "label" on a tag's alarm. In my case, I have a couple of OPC (PLC) tags that are driving a function tag that I am alarming on when the expression (x/y<0) is true. This is a very low priority alarm so some amount of "rollover" is permissible, where rather than shutting down at 0, I would like to just monitor how far below 0 it goes. I would like to indicate this using the label and I am currently dynamically labelling the alarm with: ((x-y)+" some text").

The issue I'm currently having and would like your assistance on is that the label is dynamically assigned once, when the alarm triggers, and then does not update until the alarm is cleared and then re-triggered. I'd like it to continue counting if possible.

Advice on implementation/alternative strategies is appreciated.

Thanks,

Billy

Not possible with current infrastructure. The attributes that can be dynamically attached to alarms are fundamentally edge-driven (alarm activation). You'll have to roll your own.

1 Like

Something that I do quite a bit is create a contextMenu Perspective Component Properties | Ignition User Manual so when the user right clicks the alarm it will open the appropriate faceplate. You could try something like this where the user opens a faceplate and then can see the live value.

2 Likes

Understood, likely not worth the time investment for my current situation then. Thanks for the reply!

Thanks for the reply, I'll have to keep that concept in mind for future designs as this one is more of a "display-only" type of screen (really more of a KPI screen with alarms bolted on).