Skip to main content
Version: 2.35.0

Audit logs

Available on: Paid plans

The audit log is the report of all the activities done in your ToolJet account. It will capture and display events automatically by recording who performed an activity, what when, and where the activity was performed, along with other information such as IP address.

Audit logs

Date Range

Retrieve the log of events that occurred within the specified date and time range using the range picker. By default, the system loads 24-hour logs for the initial view. The maximum duration that can be specified for the "from" and "to" dates is 30 days.

info

Pagination at the bottom allows navigation through the pages, with each page displaying a maximum of 7 logs.

Audit logs

Filter Audit Logs

You can apply filters to the audited events based on the following criteria.

Select Users

Choose a specific user from the dropdown list to view all their activities.

Select Apps

The dropdown will display all the apps associated with your account. Select an app to filter the logs related to that particular app.

Select Resources

Resources
Description
UserFilter all the User events like USER_LOGIN, USER_SIGNUP, USER_INVITE, AND USER_INVITE_REDEEM.
AppFilter all the App events like APP_CREATE, APP_UPDATE,APP_VIEW,APP_DELETE,APP_IMPORT,APP_EXPORT,APP_CLONE.
Data QueryFilters the events associated with Data Query like DATA_QUERY_RUN.
Group PermissionAll the events associated with Group Permissions will be filtered. Group Permissions include GROUP_CREATE, GROUP_UPDATE, GROUP_DELETE.
App Group PermissionWithin each group, you can set apps for read or edit privileges. These events get recorded as App Group Permissions.

Select Actions

Actions
Description
USER_LOGINThis event is recorded everytime a user logins.
USER_SIGNUPThis event is recorded everytime a new signup is made.
USER_INVITEYou can invite users to your account from Manage Users section and an event is audited everytime an invite is sent.
USER_INVITE_REDEEMThis event is recorded whenever an invite is redeemed.
APP_CREATEThis event is recorded when a user creates a new app.
APP_UPDATEThis event is recorded whenever actions like renaming the app, making the app public, editing shareable link, or deploying the app are made.
APP_VIEWThis event is logged when someone views the launched app. (public apps aren't accounted for)
APP_DELETEThis event is recorded whenever a user deletes an app from the dashboard.
APP_IMPORTThis event is recorded whenever a user imports an app.
APP_EXPORTThis event is recorded whenever an app is exported.
APP_CLONEThis event is recorded whenever a clone of the existing app is created.
DATA_QUERY_RUNThis event is logged whenever a data source is added, a query is created, or whenever a query is run either from the query editor or from the launched app.
GROUP_PERMISSION_CREATEThis event is recorded whenever a group is created.
GROUP_PERMISSION_UPDATEThis event is recorded whenever an app or user is added to or removed from a group, or the permissions for a group are updated.
GROUP_PERMISSION_DELETEThis event is recorded whenever a user group is deleted from an account.
APP_GROUP_PERMISSION_UPDATEFor every app added in to user group, you can set privileges like View or Edit and whenever these privileges are updated this event is recorded. By default, the permission of an app for a user group is set to View.

Understanding Log Information

Audit logs
Property
Description
action_typeThis indicates the type of action that was logged in the event. Refer to this for more information on actions.
created_atShows the date and time when the event was logged.
idEach logged event is assigned a unique event ID.
ip_addressDisplays the IP address from which the event was logged.
metadataThe metadata includes two sub-properties: tooljet_version and user_agent. tooljet_version shows the version of ToolJet used for the event, while user_agent contains information about the device and browser used.
organization_idEvery organization in ToolJet has a unique ID associated with it, which is recorded when an event occurs.
resource_idDifferent resources have their respective IDs associated with them. These IDs are assigned when the resources are created.
resource_nameShows the name of the resources that were involved in the logged event. For example, if an app was created or deleted, it will display the name of that app.
resource_typeIndicates the type of the resources involved in the logged event.
user_idEach user account in ToolJet has a unique ID associated with it, which is recorded when an event occurs.

Log File

The file will contain all the data from audit logs. The log file can be created by specifying the path in the environment variables. The log file is rotated on a daily basis and is updated dynamically every time a new audit log is generated.

Learn more about setting up the log file generation here.

Log Rotation

The log file is configured to rotate on a daily basis. This means that a new log file will be created every day, ensuring efficient management and organization of audit data.

Log File Path

The path for the log file is defined using the LOG_FILE_PATH variable in the environment. It's important to understand that this path is relative to the home directory of the machine. For instance, if LOG_FILE_PATH is set to hsbc/dashboard/log, the resulting log file path will be structured as follows:

homepath/hsbc/dashboard/log/tooljet_log/{process_id}-{date}/audit.log

Here, {process_id} is a placeholder for the unique process identifier, and {date} represents the current date. This structured path ensures that audit logs are organized by both process and date, facilitating easy traceability and analysis.

Variable
Description
LOG_FILE_PATHthe path where the log file will be created ( eg: tooljet/log/tooljet-audit.log)
Example Log file data
{
level: 'info',
message: 'PERFORM APP_CREATE OF awdasdawdwd APP',
timestamp: '2023-11-02 17:12:40',
auditLog: {
userId: '0ad48e21-e7a2-4597-9568-c4535aedf687',
organizationId: 'cf8e132f-a68a-4c81-a0d4-3617b79e7b17',
resourceId: 'eac02f79-b8e2-495a-bffe-82633416c829',
resourceType: 'APP',
actionType: 'APP_CREATE',
resourceName: 'awdasdawdwd',
ipAddress: '::1',
metadata: {
userAgent: 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36',
tooljetVersion: '2.22.2-ee2.8.3'
}
},
label: 'APP'
}