Tutorial: Configure a log analytics workspace
In this tutorial, you learn how to:
- Configure a Log Analytics workspace for your audit and sign-in logs
- Run queries using the Kusto Query Language (KQL)
- Create a custom workbook using the quickstart template
- Add a query to an existing workbook template
Prerequisites
To analyze activity logs with Log Analytics, you need the following roles and requirements:
A Log Analytics workspace and access to that workspace
The appropriate role for Azure Monitor:
- Monitoring Reader
- Log Analytics Reader
- Monitoring Contributor
- Log Analytics Contributor
The appropriate role for Microsoft Entra ID:
- Reports Reader
- Security Reader
- Global Reader
- Security Administrator
Familiarize yourself with these articles:
Configure Log Analytics
Tip
Steps in this article might vary slightly based on the portal you start from.
This procedure outlines how to configure a Log Analytics workspace for your audit and sign-in logs. To configure a Log Analytics workspace, you need to create the workspace and then configure diagnostic settings.
Create the workspace
Sign in to the Azure portal as at least a Security Administrator and Log Analytics Contributor.
Browse to Log Analytics workspaces.
Select Create.
On the Create Log Analytics workspace page, perform the following steps:
Select your subscription.
Select a resource group.
Give your workspace a name.
Select your region.
Select Review + Create.
Select Create and wait for the deployment. You might need to refresh the page to see the new workspace.
Configure diagnostic settings
To configure diagnostic settings, you need switch to the Microsoft Entra admin center to send your identity log information to your new workspace.
Sign in to the Microsoft Entra admin center as at least a Security Administrator.
Browse to Identity > Monitoring & health > Diagnostic settings.
Select Add diagnostic setting.
On the Diagnostic setting page, perform the following steps:
Provide a name for the diagnostic setting.
Under Logs, select AuditLogs and SigninLogs.
Under Destination details, select Send to Log Analytics, and then select your new log analytics workspace.
Select Save.
Your logs can now be queried using the Kusto Query Language (KQL) in Log Analytics. You might need to wait around 15 minutes for the logs to populate.
Run queries in Log Analytics
This procedure shows how to run queries using the Kusto Query Language (KQL).
Run a query
Sign in to the Microsoft Entra admin center as at least a Reports Reader.
Browse to Identity > Monitoring & health > Log Analytics.
In the Search textbox, type your query, and select Run.
KQL query examples
Take 10 random entries from the input data:
SigninLogs | take 10
Look at the sign-ins where the Conditional Access was a success:
SigninLogs | where ConditionalAccessStatus == "success" | project UserDisplayName, ConditionalAccessStatus
Count number of successes:
SigninLogs | where ConditionalAccessStatus == "success" | project UserDisplayName, ConditionalAccessStatus | count
Aggregate count of successful sign-ins by user by day:
SigninLogs | where ConditionalAccessStatus == "success" | summarize SuccessfulSign-ins = count() by UserDisplayName, bin(TimeGenerated, 1d)
View how many times a user does a certain operation in specific time period:
AuditLogs | where TimeGenerated > ago(30d) | where OperationName contains "Add member to role" | summarize count() by OperationName, Identity
Pivot the results on operation name:
AuditLogs | where TimeGenerated > ago(30d) | where OperationName contains "Add member to role" | project OperationName, Identity | evaluate pivot(OperationName)
Merge together Audit and Sign in Logs using an inner join:
AuditLogs |where OperationName contains "Add User" |extend UserPrincipalName = tostring(TargetResources[0].userPrincipalName) | |project TimeGenerated, UserPrincipalName |join kind = inner (SigninLogs) on UserPrincipalName |summarize arg_min(TimeGenerated, *) by UserPrincipalName |extend SigninDate = TimeGenerated
View number of signs ins by client app type:
SigninLogs | summarize count() by ClientAppUsed
Count the sign ins by day:
SigninLogs | summarize NumberOfEntries=count() by bin(TimeGenerated, 1d)
Take five random entries and project the columns you wish to see in the results:
SigninLogs | take 5 | project ClientAppUsed, Identity, ConditionalAccessStatus, Status, TimeGenerated
Take the top 5 in descending order and project the columns you wish to see:
SigninLogs | take 5 | project ClientAppUsed, Identity, ConditionalAccessStatus, Status, TimeGenerated
Create a new column by combining the values to two other columns:
SigninLogs | limit 10 | extend RiskUser = strcat(RiskDetail, "-", Identity) | project RiskUser, ClientAppUsed
Create a custom workbook
This procedure shows how to create a new workbook using the quickstart template.
Sign in to the Microsoft Entra admin center as at least a Security Administrator.
Browse to Identity > Monitoring & health > Workbooks.
In the Quickstart section, select Empty.
From the Add menu, select Add text.
In the textbox, enter
# Client apps used in the past week
and select Done Editing.Below the text window, open the Add menu and select Add query.
In the query textbox, enter:
SigninLogs | where TimeGenerated > ago(7d) | project TimeGenerated, UserDisplayName, ClientAppUsed | summarize count() by ClientAppUsed
Select Run Query.
In the toolbar, from the Visualization menu select Pie chart.
Select Done Editing at the top of the page.
Select the Save icon to save your workbook.
In the dialog box that appears, enter a title, select a Resource group, and select Apply.
Add a query to a workbook template
This procedure shows how to add a query to an existing workbook template. The example is based on a query that shows the distribution of conditional access success to failures.
Sign in to the Microsoft Entra admin center as at least a Reports Reader.
Browse to Identity > Monitoring & health > Workbooks.
In the Conditional Access section, select Conditional Access Insights and Reporting.
In the toolbar, select Edit.
In the toolbar, select the three dots next to the Edit button, then Add, and then Add query.
In the query textbox, enter:
SigninLogs | where TimeGenerated > ago(20d) | where ConditionalAccessPolicies != "[]" | summarize dcount(UserDisplayName) by bin(TimeGenerated, 1d), ConditionalAccessStatus
Select Run Query.
From the Time Range menu, select Set in query.
From the Visualization menu, select Bar chart.
Select Advanced Settings.
In the Chart title field, enter
Conditional Access status over the last 20 days
and select Done Editing.
Your Conditional Access success and failure chart displays a color-coded snapshot of your tenant.