Skip to content

Commit d0f2216

Browse files
Merge pull request #307154 from guywi-ms/Update-Microsoft-Sentinel-Account-Entity-Naming
Standardized account entity naming in Microsoft Sentinel incidents an…
2 parents 5ffa465 + 73bc5b9 commit d0f2216

1 file changed

Lines changed: 31 additions & 3 deletions

File tree

articles/sentinel/whats-new.md

Lines changed: 31 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: What's new in Microsoft Sentinel
33
description: Learn about the latest new features and announcement in Microsoft Sentinel from the past few months.
4-
author: batamig
5-
ms.author: bagol
4+
author: guywi-ms
5+
ms.author: guywild
66
ms.topic: concept-article
77
ms.date: 09/28/2025
88
#Customer intent: As a security team member, I want to stay updated on the latest features and enhancements in Microsoft Sentinel so that I can effectively manage and optimize my organization's security posture.
@@ -18,9 +18,37 @@ The listed features were released in the last six months. For information about
1818

1919
[!INCLUDE [reference-to-feature-availability](includes/reference-to-feature-availability.md)]
2020

21-
## October 2025
21+
## November 2025
22+
23+
- [Call to action: update queries and automation by December 13, 2025 - standardized account entity naming in incidents and alerts](#call-to-action-update-queries-and-automation-by-december-13-2025---standardized-account-entity-naming-in-incidents-and-alerts)
24+
25+
### Call to action: update queries and automation by December 13, 2025 - standardized account entity naming in incidents and alerts
26+
27+
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.
28+
29+
> [!IMPORTANT]
30+
> This change might affect your analytic rules, automation rules, playbooks, workbooks, hunting queries, and custom integrations.
31+
32+
Sentinel will now select the most reliable account identifier using the following priority:
2233

34+
1. **UPN prefix** – the part before “@” in a User Principal Name
35+
- Example: `[email protected]``john.doe`
36+
37+
1. **Name** – used if UPN prefix is unavailable
38+
1. **Display Name** – fallback if both above are missing
39+
40+
Update your KQL queries and automation logic to follow the new precedence-aware pattern. Use the [`coalesce()`(/kusto/query/coalesce-function)](/kusto/query/coalesce-function) function to ensure compatibility:
41+
42+
```kql
43+
coalesce(Account.UPNprefix, Account.Name, Account.DisplayName)
44+
```
45+
Test all changes in a nonproduction workspace before rolling out to production.
46+
47+
48+
## October 2025
2349

50+
- [Export STIX threat intelligence objects (Preview)](#export-stix-threat-intelligence-objects-preview)
51+
- [Call to action: update queries and automation by December 13, 2025 - standardized account entity naming in incidents and alerts](#call-to-action-update-queries-and-automation-by-december-13-2025---standardized-account-entity-naming-in-incidents-and-alerts)
2452

2553
### Export STIX threat intelligence objects (Preview)
2654

0 commit comments

Comments
 (0)