Audit journal

The Audit journal is the place where all the modifications catched by the audit listener is stored.

How to use

flowchart LR
    A((Start))
    B[Create audit listener]
    C[View audit logs in audit journal]
    D((End))

    A-->B
    B-.->C
    C-.->D

In order to create (or edit) Audit listener, in the Settings app, click on main menu and select Audit listener. In the page that opens click the Add button or select and existing one and click the Edit button.

Designer

  1. Entity name - The name of the entity.
  2. Entity key - The entry in the entity.
  3. Property name - The name of the property that the listener is set on.
  4. Old value - The old value of the property.
  5. New value - The new value of the property.
  6. User - The user that did the action.
  7. Date created - The creation date of the log in the audit journal.
  8. Date updated - The updated date of the log in the audit journal.
erDiagram
    audit_journal {
        int id_entity
        string entity_key
        string property_name
        string old_value
        string new_value
        int id_user
        string date_created
        string date_updated
    }
    audit_journal many--one entity : audit_journal_entity