Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 776 Bytes

aadmanagedidentitysigninlogs.md

File metadata and controls

29 lines (20 loc) · 776 Bytes
title description ms.topic ms.service ms.author author ms.date
Example log table queries for AADManagedIdentitySignInLogs
Example queries for AADManagedIdentitySignInLogs log table
reference
azure-monitor
edbaynash
EdB-MSFT
02/18/2024

Queries for the AADManagedIdentitySignInLogs table

Most active managed identities

Gets list of top 100 most active managed identities for the last day.

AADManagedIdentitySignInLogs
| where TimeGenerated > ago(1d)
| summarize CountPerManagedIdentity = count() by ServicePrincipalId
| order by CountPerManagedIdentity desc
| take 100