Home > Back-end >  Retrieve AzureAD Users sign-in logs Kusto Resource Graph Query
Retrieve AzureAD Users sign-in logs Kusto Resource Graph Query

Time:02-20

I am trying to get a list of users logged into azure AD, that can be seen under Users | All Users from the azure portal, using Kusto Resource Graph Query but does anybody know how to call this? i understand i can List all sign-ins via http response

GET enter image description here

You can use the below Kusto Query in AzureActiveDirectory->Log Analytics

SigninLogs
| project UserId,UserType,UserDisplayName

enter image description here enter image description here

Note : There is not option to project AccountEnable,Company

  • Related