Share via


Az AADProvisioningLogs tábla lekérdezései

Kiépítési műveletek az elmúlt hétre

Az elmúlt 7 napban létrehozott, frissített, letiltott és törölt felhasználók és csoportok számát jeleníti meg.

AADProvisioningLogs
| where TimeGenerated > ago(7d)
| where ResultType == "Success"
| parse SourceIdentity with * "\"identityType\":\"" Type "\"" *
| extend Type = tolower(Type)
| summarize count() by Type, Action
| order by Type, Action

Kiépítési hibák

Megjeleníti a hibakódonkénti számot és azt, hogy mikor voltak utoljára láthatók.

AADProvisioningLogs
| where ResultType == "Failure"
| summarize Occurrences=count(), LastSeen=max(TimeGenerated) by ResultSignature
| order by LastSeen

Kiépített objektumok nap szerint

Az egyes napokhoz tartozó létrehozott objektumok napi számát összegzi.

AADProvisioningLogs
| where TimeGenerated > ago(7d)
| where ResultType == "Success"
| where Action == "Create"
| parse SourceIdentity with * "\"identityType\":\"" Type "\"" *
| extend Type = tolower(Type)
| summarize count() by Type, bin(TimeGenerated, 1d)
| render columnchart