Snowflake Query Audit Logs
Snowflake query audit logs is a feature that audits queries that users run natively in Snowflake and presents them in a universal format as Immuta audit logs. Immuta uses the Snowflake QUERY_HISTORY
and ACCESS_HISTORY
tables and translates them into the audit logs that can be viewed at query events in the Immuta UI or exported to S3. Immuta audits the activity of Immuta users on Immuta data sources.
Requirements
Snowflake Enterprise Edition or higher
Snowflake users registered as Immuta users: Note that the users' Snowflake usernames must be mapped to Immuta. Without this, Immuta will not know the users are Immuta users and will not collect audit events for their data access activity.
Store audit logs
By default Snowflake audit logs expire after 90 days. Export the universal audit model (UAM) logs to S3 or ADLS Gen2, and store audit logs outside of Immuta in order to retain the audit logs long-term.
Audit frequency
Immuta collects audit records at the frequency configured when enabling the integration, which is between 1 and 24 hours. The frequency is a global setting based on integration type, so organizations with multiple Snowflake integrations will have the same audit frequency for all of them. The more frequent the audit records are ingested, the more current the audit records; however, there could be performance and cost impacts from the frequent jobs.
To manually request native query audit ingestion, click Load Audit Events on the Immuta audit page.
Audit schema
Each audit message from the Immuta platform will be a one-line JSON object containing the properties listed below.
Property | Description | Example |
---|---|---|
action | The action associated with the audit log. |
|
actor.type | The Immuta user type of the actor who made the query. |
|
actor.id | The Immuta user ID of the actor who made the query. |
|
actor.name | The Immuta name of the user who made the query. |
|
actor.identityProvider | The IAM the user is registered in. |
|
sessionId | The session ID of the user who performed the action. |
|
actionStatus | Indicates whether or not the user was granted access to the data. Possible values are |
|
actionStatusReason | When available, the reason from Unity Catalog that the user’s query was denied. |
|
eventTimestamp | The time the query occurred. |
|
id | The unique ID of the audit record. |
|
userAgent | Client information of the user who made the query. |
|
tenantId | The Immuta SaaS tenant ID. |
|
targetType | The type of targets affected by the query; this value will always be |
|
targets | A list of the targets affected by the query. | See the example below |
auditPayload.type | The type of audit record; this value will always be: |
|
auditPayload.queryId | The unique ID of the query. If the query joins multiple tables, each table will appear as a separate log, but all will have the same query ID. |
|
auditPayload.query | The command text of the query that was run in the integration. Immuta truncates the query text to the first 2048 characters. |
|
auditPayload.startTime | The date and time the query started in UTC. |
|
auditPayload.duration | The time the query took in seconds. |
|
auditPayload.errorCode | The |
|
auditPayload.technologyContext.type | The technology the query was made in. |
|
auditPayload.technologyContext.host | The host that the integration is connected to. |
|
auditPayload.technologyContext.snowflakeUsername | The user's Snowflake username. |
|
auditPayload.technologyContext.rowsProduced | The number of rows returned in the query. Note that rows produced will show |
|
auditPayload.technologyContext.roleName | The Snowflake role the user used to make the query. |
|
auditPayload.technologyContext.warehouseId | The ID of the warehouse where the query was made. |
|
auditPayload.technologyContext.warehouseName | The name of the warehouse where the query was made. |
|
auditPayload.technologyContext.clusterNumber | The number of the cluster where the query was made. |
|
auditPayload.objectsAccessed | An array of the data sources accessed in the query. | See example below. |
auditPayload.objectsAccessed.name | The name of the data source accessed in the query. |
|
auditPayload.objectsAccessed.datasourceId | The Immuta data source ID. |
|
auditPayload.objectsAccessed.databaseName | The name of the Snowflake database. |
|
auditPayload.objectsAccessed.schemaName | The name of the Snowflake schema. |
|
auditPayload.objectsAccessed.type | Specifies if the queried data source is a table or view. |
|
auditPayload.objectsAccessed.columns | An array of the columns accessed in the query. | See example below. |
auditPayload.objectsAccessed.columns.name | The name of the column. |
|
auditPayload.objectsAccessed.columns.tags | An array of the tags on the column. | See example below. |
auditPayload.objectsAccessed.columns.securityProfile | Details about the sensitivity of the column. Available when classification frameworks are configured. | See example below. |
auditPayload.objectsAccessed.columns.inferred | If |
|
auditPayload.objectsAccessed.securityProfile | A classification for all the columns accessed together. Available when classification frameworks are configured. | See example below. |
auditPayload.securityProfile.sensitivity.score | The sensitivity score of the query. Classification must be configured for this field. |
|
receivedTimestamp | The timestamp of when the audit event was received and stored by Immuta. |
|
Example audit record
Last updated