Call to action: update queries and automation
November 2025
Call to action: update queries and automation by December 13, 2025 - standardized account entity naming in incidents and alerts
Microsoft Sentinel is updating how it identifies account entities in incidents and alerts. This change introduces a standardized naming logic to improve consistency and reliability across your analytics and automation workflows.
Sentinel will now select the most reliable account identifier using the following priority:
- UPN prefix – the part before “@” in a User Principal Name
Example: john.doe@contoso.com → john.doe - Name – used if UPN prefix is unavailable
- Display Name – fallback if both above are missing
Update your KQL queries and automation logic to follow the new precedence-aware pattern. Use the coalesce()(/kusto/query/coalesce-function) function to ensure compatibility:
kql
coalesce(Account.UPNprefix, Account.Name, Account.DisplayName)
Test all changes in a nonproduction workspace before rolling out to production.

