Ignition Audit Log Action Column

Hello All,

I am looking for a list of all possible items that could show up in the ACTION column? I would like to put a drop down to allow users to filter on ACTION "types".

Thanks,

Frank

Found this enum in the sdk docs:

You can probably import that to build your list of available actions.

1 Like

I’d assume the jdk would be authoritative, but this doesn’t exactly match: :man_shrugging:

I might just do a select distinct

The other issue to be careful about is that you can use System.util.audit() and send any string for the action.

1 Like

Great Point Marcus. I think I will create a Named Query to grab all 'distinct' values in the audit log table and then populate my filter drop down with the result set so it is dynamic.

Thanks,

Frank

1 Like