Database Audit Logging (Beta) for {{{ .essential }}}

April 21, 2026 ยท View on GitHub

{{{ .essential }}} provides an audit logging feature that records user access activities of your database, such as executed SQL statements.

Note:

Currently, the database audit logging feature is only available upon request. To request this feature, click ? in the lower-right corner of the TiDB Cloud console, and then click Support Tickets to go to the Help Center. Create a ticket, fill in "Apply for {{{ .essential }}} database audit logging" in the Description field, and then click Submit.

To evaluate the effectiveness of user access policies and other information security measures of your organization, it is a security best practice to periodically analyze database audit logs.

The audit logging feature is disabled by default. To audit a {{{ .essential }}} instance, you need to enable audit logging for it.

Audit logging configurations

Data redaction

By default, {{{ .essential }}} redacts sensitive data in audit logs. Take the following SQL statement as an example:

INSERT INTO `test`.`users` (`id`, `name`, `password`) VALUES (1, 'Alice', '123456');

It is redacted as follows:

INSERT INTO `test`.`users` (`id`, `name`, `password`) VALUES ( ... );

Log file rotation

{{{ .essential }}} generates a new audit log file when either of the following conditions is met:

  • The current log file reaches the rotation size (100 MiB by default).
  • The rotation interval (one hour by default) has passed since the previous log generation. Depending on the internal scheduling mechanism, log generation might be delayed by a few minutes.

Audit logging locations

You can store audit logs in the following locations:

TiDB Cloud

You can store audit logs in TiDB Cloud and download them to your local machine. Audit logs expire and are deleted after 365 days. To request a longer retention period, contact TiDB Cloud Support.

Amazon S3

To store audit logs in Amazon S3, you need to provide the following information:

  • URI: s3://<bucket-name>/<folder-path>/
  • Access credentials: choose one of the following:
    • An access key with the s3:PutObject permission.
    • A role ARN with the s3:PutObject permission. Only clusters hosted on AWS support using a role ARN.

For more information, see Configure Amazon S3 access.

Google Cloud Storage

To store audit logs in Google Cloud Storage, you need to provide the following information:

  • URI: gs://<bucket-name>/<folder-path>/
  • Access credential: a service account key with the storage.objects.create and storage.objects.delete permissions.

For more information, see Configure GCS access.

Azure Blob Storage

To store audit logs in Azure Blob Storage, you need to provide the following information:

  • URI: azure://<account-name>.blob.core.windows.net/<container-name>/<folder-path>/ or https://<account-name>.blob.core.windows.net/<container-name>/<folder-path>/
  • Access credential: a shared access signature (SAS) token with Read and Write permissions on the Container and Object resources.

For more information, see Configure Azure Blob Storage access.

Alibaba Cloud OSS

To store audit logs in Alibaba Cloud OSS, you need to provide the following information:

  • URI: oss://<bucket-name>/<folder-path>/
  • Access credential: an AccessKey pair with the oss:PutObject and oss:GetBucketInfo permissions to allow data export to the OSS bucket.

For more information, see Configure Alibaba Cloud Object Storage Service (OSS) access.

Audit logging filter rules

To filter audit logs, you need to create a filter rule to specify which events to log.

The filter rule contains the following fields:

  • users: A list of user names to filter audit events. You can use the wildcard % to match any user name.

  • filters: A list of filter objects. Each filter object contains the following fields:

    • classes: A list of event classes to filter audit events. For example, ["QUERY", "EXECUTE"].
    • tables: A list of table filters. For more information, see Table Filter.
    • statusCodes: A list of status codes to filter audit events. 1 means success, and 0 means failure.

The following table shows all event classes in database audit logging:

Event classDescriptionParent-class
CONNECTIONRecords all operations related to connections, such as handshaking, connections, disconnections, connection reset, and changing users-
CONNECTRecords all operations of the handshaking in connectionsCONNECTION
DISCONNECTRecords all operations of the disconnectionsCONNECTION
CHANGE_USERRecords all operations of changing usersCONNECTION
QUERYRecords all operations of SQL statements, including all errors about querying and modifying data-
TRANSACTIONRecords all operations related to transactions, such as BEGIN, COMMIT, and ROLLBACKQUERY
EXECUTERecords all operations of the EXECUTE statementsQUERY
QUERY_DMLRecords all operations of the DML statements, including INSERT, REPLACE, UPDATE, DELETE, and LOAD DATAQUERY
INSERTRecords all operations of the INSERT statementsQUERY_DML
REPLACERecords all operations of the REPLACE statementsQUERY_DML
UPDATERecords all operations of the UPDATE statementsQUERY_DML
DELETERecords all operations of the DELETE statementsQUERY_DML
LOAD DATARecords all operations of the LOAD DATA statementsQUERY_DML
SELECTRecords all operations of the SELECT statementsQUERY
QUERY_DDLRecords all operations of the DDL statementsQUERY
AUDITRecords all operations related to setting TiDB database auditing, including setting system variables and calling system functions-
AUDIT_FUNC_CALLRecords all operations of calling system functions related to TiDB Cloud database auditingAUDIT
AUDIT_SET_SYS_VARRecords all operations of setting system variablesAUDIT

Note:

The AUDIT event class and its subclasses are always recorded in audit logs and cannot be filtered out.

Configure audit logging

You can enable, edit, and disable audit logging.

Enable audit logging

You can enable audit logging for a {{{ .essential }}} instance using the TiDB Cloud console or the TiDB Cloud CLI.

Note:

Enabling audit logging alone does not generate audit logs. You must also configure filters to specify which events to log. For more information, see Manage audit logging filter rules.

  1. Log in to the TiDB Cloud console and navigate to the My TiDB page.

    Tip:

    If you are in multiple organizations, use the combo box in the upper-left corner to switch to your target organization first.

  2. Click the name of your target {{{ .essential }}} instance to go to its overview page, and then click Settings > DB Audit Logging in the left navigation pane.

  3. On the DB Audit Logging page, click Enable.

  4. Select a storage location for the audit logs and fill in the required information. Then click Test Connection and Next or Next. For more information about available storage locations, see Audit logging locations.

  5. In the Database Audit Logging Settings dialog, fill in the log file rotation and log redaction settings, and then click Save.

Take Amazon S3 storage as an example. To enable audit logging and store audit logs in Amazon S3, run the following command:

ticloud serverless audit-log config update -c <cluster-id> --enabled --cloud-storage S3 --s3.uri <s3-url> --s3.access-key-id <s3-access-key-id> --s3.secret-access-key <s3-secret-access-key> --rotation-size-mib <size-in-mb> --rotation-interval-minutes <interval-in-minutes> --unredacted=<true|false>

The --rotation-size-mib, --rotation-interval-minutes, and --unredacted parameters are optional. If you do not specify them, the default values are used.

Edit audit logging

You can edit the audit logging for a {{{ .essential }}} instance after enabling it.

  1. Log in to the TiDB Cloud console and navigate to the My TiDB page.

    Tip:

    If you are in multiple organizations, use the combo box in the upper-left corner to switch to your target organization first.

  2. Click the name of your target {{{ .essential }}} instance to go to its overview page, and then click Settings > DB Audit Logging in the left navigation pane.

  3. On the DB Audit Logging page, click Settings.

  4. In the Database Audit Logging Settings dialog, update the log file rotation or log redaction settings, and then click Save.

To update the audit logging settings using the TiDB Cloud CLI, run the following command:

ticloud serverless audit-log config update -c <cluster-id> --rotation-size-mib <size-in-mb> --rotation-interval-minutes <interval-in-minutes> --unredacted=<true|false>

Disable audit logging

You can disable audit logging for a {{{ .essential }}} instance.

  1. Log in to the TiDB Cloud console and navigate to the My TiDB page.

    Tip:

    If you are in multiple organizations, use the combo box in the upper-left corner to switch to your target organization first.

  2. Click the name of your target {{{ .essential }}} instance to go to its overview page, and then click Settings > DB Audit Logging in the left navigation pane.

  3. On the DB Audit Logging page, click ... in the upper-right corner, and then click Disable.

  4. In the Disable DB Audit Logging dialog, click Disable.

To disable audit logging using the TiDB Cloud CLI, run the following command:

ticloud serverless audit-log config update -c <cluster-id> --disabled=true

Manage audit logging filter rules

You can create, edit, disable, and delete an audit logging filter rule.

Create a filter rule

To create a filter rule, define which users and events you want to capture in the audit logs. You can specify users, event classes, tables, and status codes to tailor the logging to your needs.

  1. Log in to the TiDB Cloud console and navigate to the My TiDB page.

    Tip:

    If you are in multiple organizations, use the combo box in the upper-left corner to switch to your target organization first.

  2. Click the name of your target {{{ .essential }}} instance to go to its overview page, and then click Settings > DB Audit Logging in the left navigation pane.

  3. On the DB Audit Logging page, click Add Filter Rule.

  4. In the Add Filter Rule dialog, fill in the Filter Name, SQL Users, and Filter Rule fields, and then click Confirm. For more information about these fields, see Audit logging filter rules.

To create a filter rule using the TiDB Cloud CLI, run the following command:

ticloud serverless audit-log filter create --cluster-id <cluster-id> --display-name <rule-name> --rule '{"users":["%@%"],"filters":[{}]}'

Edit a filter rule

  1. Log in to the TiDB Cloud console and navigate to the My TiDB page.

    Tip:

    If you are in multiple organizations, use the combo box in the upper-left corner to switch to your target organization first.

  2. Click the name of your target {{{ .essential }}} instance to go to its overview page, and then click Settings > DB Audit Logging in the left navigation pane.

  3. On the DB Audit Logging page, locate the filter rule you want to edit, click ... in its row, and then click Edit.

  4. In the Edit Filter Rule dialog, update the Filter Name or Filter Rule field, and then click Confirm.

To edit a filter rule using the TiDB Cloud CLI, run the following command:

ticloud serverless audit-log filter update --cluster-id <cluster-id> --filter-rule-id <rule-id> --rule '{"users":["%@%"],"filters":[{"classes":["QUERY"],"tables":["test.t"]}]}'

Disable a filter rule

  1. Log in to the TiDB Cloud console and navigate to the My TiDB page.

    Tip:

    If you are in multiple organizations, use the combo box in the upper-left corner to switch to your target organization first.

  2. Click the name of your target {{{ .essential }}} instance to go to its overview page, and then click Settings > DB Audit Logging in the left navigation pane.

  3. On the DB Audit Logging page, locate the filter rule you want to disable, and turn off the toggle to disable the filter rule.

To disable a filter rule using the TiDB Cloud CLI, run the following command:

ticloud serverless audit-log filter update --cluster-id <cluster-id> --filter-rule-id <rule-id> --enabled=false

Delete a filter rule

  1. Log in to the TiDB Cloud console and navigate to the My TiDB page.

    Tip:

    If you are in multiple organizations, use the combo box in the upper-left corner to switch to your target organization first.

  2. Click the name of your target {{{ .essential }}} instance to go to its overview page, and then click Settings > DB Audit Logging in the left navigation pane.

  3. On the DB Audit Logging page, locate the filter rule you want to delete and click ....

  4. Click Delete, and then click I understand. Delete it to confirm.

ticloud serverless audit-log filter delete --cluster-id <cluster-id> --filter-rule-id <rule-id>

Access audit logging with TiDB Cloud Storage

When you store audit logs in TiDB Cloud, {{{ .essential }}} saves them as readable text files named YYYY-MM-DD-<index>.log. You can view and download these files from the TiDB Cloud console or using the TiDB Cloud CLI.

Note:

  • {{{ .essential }}} does not guarantee that audit logs are stored in sequential order. A log file named YYYY-MM-DD-<index>.log might contain entries from earlier dates.
  • To retrieve all logs for a specific date (for example, January 1, 2025), set --start-date 2025-01-01 and --end-date 2025-01-02. In some cases, you might need to download all log files and sort them by the TIME field.
  1. Log in to the TiDB Cloud console and navigate to the My TiDB page.

    Tip:

    If you are in multiple organizations, use the combo box in the upper-left corner to switch to your target organization first.

  2. Click the name of your target {{{ .essential }}} instance to go to its overview page, and then click Settings > DB Audit Logging in the left navigation pane.

  3. On the DB Audit Logging page, you can view the list of audit logs under TiDB Cloud Storage.

  4. To download audit logs, select one or more logs from the list and then click Download.

To download audit logs using the TiDB Cloud CLI, run the following command:

ticloud serverless audit-log download --cluster-id <cluster-id> --output-path <output-path> --start-date <start-date> --end-date <end-date>
  • start-date: the start date of the audit logs to download, in the format of YYYY-MM-DD, for example, 2025-01-01.
  • end-date: the end date of the audit logs to download, in the format of YYYY-MM-DD, for example, 2025-01-01.

Audit logging fields

For each database event record in audit logs, TiDB Cloud provides the following fields:

General information

All classes of audit logs contain the following information:

FieldDescription
IDThe unique identifier that identifies the audit record of an operation.
TIMEThe timestamp of the audit record.
EVENTThe event classes of the audit record. Multiple event types are separated by commas (,).
USERThe username of the audit record.
ROLESThe roles of the user at the time of the operation.
CONNECTION_IDThe identifier of the user's connection.
TABLESThe accessed tables related to this audit record.
STATUS_CODEThe status code of the audit record. 1 means success, and 0 means failure.
KEYSPACE_NAMEThe keyspace name of the audit record.
SERVERLESS_TENANT_IDThe ID of the serverless tenant that the {{{ .essential }}} instance belongs to.
SERVERLESS_PROJECT_IDThe ID of the serverless project that the {{{ .essential }}} instance belongs to.
SERVERLESS_CLUSTER_IDThe ID of the serverless {{{ .essential }}} instance that the audit record belongs to.
REASONThe error message of the audit record. Only recorded when an error occurs during the operation.

SQL statement information

When the event class is QUERY or a subclass of QUERY, the audit logs contain the following information:

FieldDescription
CURRENT_DBThe name of the current database.
SQL_TEXTThe executed SQL statements. If audit log redaction is enabled, the redacted SQL statements are recorded.
EXECUTE_PARAMSThe parameters for the EXECUTE statements. Recorded only when the event classes include EXECUTE and redaction is disabled.
AFFECTED_ROWSThe number of affected rows of the SQL statements. Recorded only when the event classes include QUERY_DML.

Connection information

When the event class is CONNECTION or a subclass of CONNECTION, the audit logs contain the following information:

FieldDescription
CURRENT_DBThe name of the current database. When the event classes include DISCONNECT, this information is not recorded.
CONNECTION_TYPEThe type of connection, including Socket, UnixSocket, and SSL/TLS.
PIDThe process ID of the current connection.
SERVER_VERSIONThe current version of the connected TiDB server.
SSL_VERSIONThe current version of SSL in use.
HOST_IPThe current IP address of the connected TiDB server.
HOST_PORTThe current port of the connected TiDB server.
CLIENT_IPThe current IP address of the client.
CLIENT_PORTThe current port of the client.

Note:

To improve traffic visibility, CLIENT_IP now displays the real client IP address for connections via AWS PrivateLink, instead of the Load Balancer (LB) IP. Currently, this feature is in beta and is available only in the AWS region Frankfurt (eu-central-1).

Audit operation information

When the event class is AUDIT or a subclass of AUDIT, the audit logs contain the following information:

FieldDescription
AUDIT_OP_TARGETThe objects of the setting related to TiDB Cloud database auditing.
AUDIT_OP_ARGSThe arguments of the setting related to TiDB Cloud database auditing.

Audit logging limitations

{{{ .essential }}} does not guarantee the sequential order of audit logs, which means that you might have to review all log files find the most recent events. To sort the logs chronologically, you can use the TIME field in the audit logs.