Audit Logs / Microsoft Entra ID AuditLogs category
Audit Logs: Label
| OperationName | Description | Sample | Rule |
|---|---|---|---|
| Add label | A sensitivity label was applied to a Microsoft Entra (Microsoft 365) group. | N | N |
| Delete label | Deletes a sensitivity/classification label synchronized to Entra ID for Microsoft 365 groups and sites. | N | N |
| Update label | Update to a label definition stored in the Microsoft Entra (Core Directory). | N | N |
Add label
#Description
A sensitivity label was applied to a Microsoft Entra group. In Entra ID, published Microsoft Purview sensitivity labels can be applied to Microsoft 365 groups, where they enforce the group's connected-workspace settings such as privacy and guest access.
References #
Delete label
#Description
Records deletion of a sensitivity (classification) label from the directory, the labels synchronized to Microsoft Entra ID and applied to Microsoft 365 groups, Teams, and SharePoint sites. Removing a label can relax container-level protections on those workspaces.
References #
Rules often query computed field names, not native AuditLogs columns #
Many Entra detection rules pivot on field names that are not columns in this table but KQL projections the rule author computes from two dynamic columns. Searching the field list for those names finds nothing; use the canonical paths instead.
InitiatingUserPrincipalName(and siblingInitiating*names) is not a column. Rules project it fromInitiatedBy, for exampleextend InitiatingUserPrincipalName = tostring(InitiatedBy.user.userPrincipalName). The native paths areInitiatedBy.user.userPrincipalName,InitiatedBy.user.displayName, andInitiatedBy.user.idfor user actors, andInitiatedBy.app.displayName/InitiatedBy.app.appIdfor application or service-principal actors.- What changed lives in
TargetResources, adynamicarray. Expand it before filtering on the change:AuditLogs | mv-expand TargetResources | extend props = TargetResources.modifiedProperties, then readprops[].displayName,props[].oldValue, andprops[].newValue.
Column shapes per the AuditLogs table reference and the Graph directoryAudit resource.