Get started with Azure SQL Managed Instance auditing
Azure SQL Managed Instance
Azure SQL Managed Instance auditing tracks database events and writes them to an audit log in your Azure storage account. Auditing also:
- Helps you maintain regulatory compliance, understand database activity, and gain insight into discrepancies and anomalies that could indicate business concerns or suspected security violations.
- Enables and facilitates adherence to compliance standards, although it doesn't guarantee compliance. For more information about Azure programs that support standards compliance, see the Azure Trust Center, where you can find the most current list of compliance certifications.
Set up auditing for your server to Azure Storage
The following section describes the configuration of auditing on your managed instance.
Go to the Azure portal.
Create an Azure Storage container where audit logs are stored.
Navigate to the Azure storage account where you would like to store your audit logs.
Important
- Use a storage account in the same region as the managed instance to avoid cross-region reads/writes.
- If your storage account is behind a Virtual Network or a Firewall, please see Grant access from a virtual network.
- If you change retention period from 0 (unlimited retention) to any other value, please note that retention will only apply to logs written after retention value was changed (logs written during the period when retention was set to unlimited are preserved, even after retention is enabled).
In the storage account, go to Overview and click Blobs.
In the top menu, click + Container to create a new container.
Provide a container Name, set Public access level to Private, and then click OK.
Important
Customers wishing to configure an immutable log store for their server- or database-level audit events should follow the instructions provided by Azure Storage. (Please ensure you have selected Allow additional appends when you configure the immutable blob storage.)
After you create the container for the audit logs, there are two ways to configure it as the target for the audit logs: using T-SQL or using the SQL Server Management Studio (SSMS) UI:
Configure blob storage for audit logs using T-SQL:
In the containers list, click the newly created container and then click Container properties.
Copy the container URL by clicking the copy icon and save the URL (for example, in Notepad) for future use. The container URL format should be
https://<StorageName>.blob.core.windows.net/<ContainerName>
Generate an Azure Storage SAS token to grant managed instance auditing access rights to the storage account:
Navigate to the Azure storage account where you created the container in the previous step.
Click on Shared access signature in the Storage Settings menu.
Configure the SAS as follows:
Allowed services: Blob
Start date: to avoid time zone-related issues, use yesterday’s date
End date: choose the date on which this SAS token expires
Note
Renew the token upon expiry to avoid audit failures.
Click Generate SAS.
The SAS token appears at the bottom. Copy the token by clicking on the copy icon, and save it (for example, in Notepad) for future use.
Important
Remove the question mark (“?”) character from the beginning of the token.
Connect to your managed instance via SQL Server Management Studio or any other supported tool.
Execute the following T-SQL statement to create a new credential using the container URL and SAS token that you created in the previous steps:
CREATE CREDENTIAL [<container_url>] WITH IDENTITY='SHARED ACCESS SIGNATURE', SECRET = '<SAS KEY>' GO
Execute the following T-SQL statement to create a new server audit (choose your own audit name, and use the container URL that you created in the previous steps). If not specified, the
RETENTION_DAYS
default is 0 (unlimited retention):CREATE SERVER AUDIT [<your_audit_name>] TO URL ( PATH ='<container_url>' , RETENTION_DAYS = integer ) GO
Continue by creating a server audit specification or database audit specification.
Configure blob storage for audit logs using SQL Server Management Studio 18:
Connect to the managed instance using the SQL Server Management Studio UI.
Expand the root note of Object Explorer.
Expand the Security node, right-click on the Audits node, and click on New Audit:
Make sure URL is selected in Audit destination and click on Browse:
(Optional) Sign in to your Azure account:
Select a subscription, storage account, and blob container from the dropdowns, or create your own container by clicking on Create. Once you have finished, click OK:
Click OK in the Create Audit dialog.
After you configure the blob container as target for the audit logs, create and enable a server audit specification or database audit specification as you would for SQL Server:
Enable the server audit that you created in step 3:
ALTER SERVER AUDIT [<your_audit_name>] WITH (STATE=ON); GO
For additional information:
- Auditing differences between Azure SQL Managed Instance and a database in SQL Server
- CREATE SERVER AUDIT
- ALTER SERVER AUDIT
Set up auditing for your server to Event Hubs or Azure Monitor logs
Audit logs from a managed instance can be sent to Azure Event Hubs or Azure Monitor logs. This section describes how to configure this:
Navigate in the Azure portal to the managed instance.
Click on Diagnostic settings.
Click on Turn on diagnostics. If diagnostics is already enabled, +Add diagnostic setting will show instead.
Select SQLSecurityAuditEvents in the list of logs.
Select a destination for the audit events: Event Hubs, Azure Monitor logs, or both. Configure for each target the required parameters (e.g. Log Analytics workspace).
Click Save.
Connect to the managed instance using SQL Server Management Studio (SSMS) or any other supported client.
Execute the following T-SQL statement to create a server audit:
CREATE SERVER AUDIT [<your_audit_name>] TO EXTERNAL_MONITOR; GO
Create and enable a server audit specification or database audit specification as you would for SQL Server:
Enable the server audit created in step 8:
ALTER SERVER AUDIT [<your_audit_name>] WITH (STATE=ON); GO
Consume audit logs
Consume logs stored in Azure Storage
There are several methods you can use to view blob auditing logs.
Use the system function
sys.fn_get_audit_file
(T-SQL) to return the audit log data in tabular format. For more information on using this function, see the sys.fn_get_audit_file documentation.You can explore audit logs by using a tool such as Azure Storage Explorer. In Azure Storage, auditing logs are saved as a collection of blob files within a container that was defined to store the audit logs. For further details about the hierarchy of the storage folder, naming conventions, and log format, see the Blob Audit Log Format Reference.
For a full list of audit log consumption methods, refer to Get started with Azure SQL Database auditing.
Consume logs stored in Event Hubs
To consume audit logs data from Event Hubs, you will need to set up a stream to consume events and write them to a target. For more information, see the Azure Event Hubs documentation.
Consume and analyze logs stored in Azure Monitor logs
If audit logs are written to Azure Monitor logs, they are available in the Log Analytics workspace, where you can run advanced searches on the audit data. As a starting point, navigate to the Log Analytics workspace. Under the General section, click Logs and enter a simple query, such as: search "SQLSecurityAuditEvents"
to view the audit logs.
Azure Monitor logs gives you real-time operational insights using integrated search and custom dashboards to readily analyze millions of records across all your workloads and servers. For additional useful information about Azure Monitor logs search language and commands, see Azure Monitor logs search reference.
Note
This article was recently updated to use the term Azure Monitor logs instead of Log Analytics. Log data is still stored in a Log Analytics workspace and is still collected and analyzed by the same Log Analytics service. We are updating the terminology to better reflect the role of logs in Azure Monitor. See Azure Monitor terminology changes for details.
Auditing differences between databases in Azure SQL Managed Instance and databases in SQL Server
The key differences between auditing in databases in Azure SQL Managed Instance and databases in SQL Server are:
- With Azure SQL Managed Instance, auditing works at the server level and stores
.xel
log files in Azure Blob storage. - In SQL Server, audit works at the server level, but stores events on files system/windows event logs.
XEvent auditing in managed instances supports Azure Blob storage targets. File and windows logs are not supported.
The key differences in the CREATE AUDIT
syntax for auditing to Azure Blob storage are:
- A new syntax
TO URL
is provided and enables you to specify the URL of the Azure Blob storage container where the.xel
files are placed. - A new syntax
TO EXTERNAL MONITOR
is provided to enable Event Hubs and Azure Monitor log targets. - The syntax
TO FILE
is not supported because Azure SQL Managed Instance cannot access Windows file shares. - Shutdown option is not supported.
queue_delay
of 0 is not supported.
Next steps
- For a full list of audit log consumption methods, refer to Get started with Azure SQL Database auditing.
- For more information about Azure programs that support standards compliance, see the Azure Trust Center, where you can find the most current list of compliance certifications.