Failed Login audit

Can I get access to failed login attempts to the client? I know these can be logged using the Ignition Audit events, but we use our own audit tables. I would like to be able to capture failed login attempts. I tried using Client Startup script, but I don't believe that is being fired unless the login is successful.

Hello,
I wanted to follow up to see if you were able to find any solution for capturing failed client login attempts. We’re looking to implement the same functionality in our project.

Use the built-in audit tables. Use an INSERT trigger in your DB (not in Ignition) to copy desired records to your custom tables.

1 Like

Hello,
If we use the built-in audit tables to capture failed client login attempts, will it create a large number of entries? We’re concerned it might take up a lot of storage, especially since tag writes are also being logged.

Thank You

Possibly. Set up a maintenance script that prunes your DB appropriately.

Thank you