Skip to content

Commit 0c67c49

Browse files
Learn Build Service GitHub AppLearn Build Service GitHub App
authored andcommitted
Merging changes synced from https://github.com/MicrosoftDocs/fabric-docs-pr (branch live)
2 parents 34f538f + 3071093 commit 0c67c49

4 files changed

Lines changed: 36 additions & 18 deletions

File tree

docs/graph/gql-language-guide.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -202,10 +202,10 @@ This query runs as follows:
202202

203203
Now find people with specific characteristics. In this case, find everyone named Alice and show their names and birthdays.
204204

205-
<!-- GQL Query: Checked 2025-11-17 -->
205+
<!-- GQL Query: Checked 2026-07-15 -->
206206
```gql
207207
MATCH (p:Person)
208-
FILTER p.firstName = 'Annemarie'
208+
FILTER p.firstName = 'Alice'
209209
RETURN p.firstName, p.lastName, p.birthday
210210
```
211211

@@ -280,12 +280,12 @@ RETURN fullName, c.name AS companyName -- Input: top 10 rows table
280280

281281
This query runs as follows:
282282

283-
1. **`MATCH`** finds people who work at companies with "Air" in their name.
283+
1. **`MATCH`** finds people who work at companies.
284284
1. **`LET`** creates full names by combining first and family names.
285-
1. **`FILTER`** keeps only Contoso employees.
285+
1. **`FILTER`** keeps only employees of companies with "Air" in their company name.
286286
1. **`ORDER BY`** sorts by full name.
287287
1. **`LIMIT`** takes the first 10 results.
288-
1. **`RETURN`** returns names and company locations.
288+
1. **`RETURN`** returns full names and company names.
289289

290290
### Variables connect your data
291291

@@ -382,15 +382,15 @@ Start with basic relationship patterns:
382382

383383
**Patterns with specific data:**
384384

385-
<!-- GQL Pattern: Checked 2025-11-17 -->
385+
<!-- GQL Pattern: Checked 2026-07-15 -->
386386
```gql
387-
-- Find who works at Microsoft specifically
387+
-- Find employees named Alice
388388
(p:Person)-[:workAt]->(c:Company)
389-
WHERE p.firstName = 'Annemarie'
389+
WHERE p.firstName = 'Alice'
390390

391-
-- Find friends who are both young
391+
-- Find friends who both have birthdays after December 31, 1999
392392
(p:Person)-[:knows]->(f:Person)
393-
WHERE p.birthday > 19950101 AND f.birthday > 19950101
393+
WHERE p.birthday > 19991231 AND f.birthday > 19991231
394394
```
395395

396396
**Label expressions for flexible entity selection:**

docs/real-time-intelligence/anomaly-detection.md

Lines changed: 26 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
title: Anomaly Detection in Real-Time Intelligence
33
description: Learn how to set up and configure anomaly detection for your real-time data streams using Microsoft Fabric Real-Time Intelligence.
4-
ms.reviewer: tessarhurr, v-hzargari
4+
ms.reviewer: tessarhurr, hzargari-ms
55
ms.topic: how-to
66
ms.subservice: rti-anomaly-detector
7-
ms.date: 07/06/2026
7+
ms.date: 07/12/2026
88
ms.search.form: Anomaly Detection How To
99
ai-usage: ai-assisted
1010
---
@@ -30,7 +30,7 @@ Anomaly detection runs natively on Eventhouse tables without copying data, opera
3030
- Role of **Admin**, **Contributor**, or **Member** [in the workspace](../fundamentals/roles-workspaces.md).
3131
- An [Eventhouse](create-eventhouse.md) in your workspace with a KQL database.
3232
- A Python plugin enabled on that same Eventhouse.
33-
1. To enable the plugin, navigate to your Eventhouse.
33+
1. To enable the plugin, go to your Eventhouse.
3434
1. In the upper toolbar, select **Plugins** and then enable the **Python language extension**.
3535
1. Select the Python 3.11.7 DL plugin and select **Done**.
3636

@@ -82,11 +82,11 @@ You can start anomaly detection in **three** ways:
8282

8383
## [From the Create button](#tab/create)
8484

85-
1. In the Fabric home page, select the ellipsis (⋯) icon and then the **Create** option.
85+
1. In the Fabric home page, select the ellipsis (⋯) icon and then select **Create**.
8686

8787
:::image type="content" source="media/anomaly-detection/create-button.png" alt-text="Screenshot of the Create button in the left navigation pane.":::
8888

89-
1. In the **Create** pane, select **Anomaly detection** under the **Real-Time Intelligence** section.
89+
1. In the **Create** pane, under the **Real-Time Intelligence** section, select **Anomaly detection**.
9090

9191
:::image type="content" source="media/anomaly-detection/create-anomaly-detection.png" alt-text="Screenshot of the Create pane with Anomaly detection selected.":::
9292

@@ -100,6 +100,24 @@ You can start anomaly detection in **three** ways:
100100

101101
----
102102

103+
### View existing anomaly detection configurations
104+
105+
Before you create a new anomaly detector, check whether an anomaly detection configuration already exists for the data source you selected. This view gives you quick visibility into how anomaly detection is currently set up for that data source. It helps you avoid duplicate work and better understand how others use the data.
106+
107+
1. In your list of data sources, select the ellipsis **(...)** for the data source you want to analyze, and then select **Existing anomaly detector**.
108+
109+
:::image type="content" source="media/anomaly-detection/existing-anomaly-detector.png" alt-text="Screenshot of the Existing anomaly detector option in the ellipsis list." lightbox="media/anomaly-detection/existing-anomaly-detector.png":::
110+
111+
1. In **View anomalies detected**, you can view all existing anomaly detection configurations for the selected data source and explore the details of each.
112+
113+
1. From the left navigation pane, select a configuration to explore the detected anomalies, or select **Open** to view it in full screen.
114+
115+
1. If the existing configurations don't meet your needs, select **New** to create a new anomaly detection configuration.
116+
117+
:::image type="content" source="media/anomaly-detection/existing-configuration-details.png" alt-text="Screenshot of the details view for an existing anomaly detection configuration." lightbox="media/anomaly-detection/existing-configuration-details.png":::
118+
119+
This experience helps you move quickly from exploration to action, without leaving the context of your data source.
120+
103121
### Configure input columns for analysis
104122

105123
Specify which columns to analyze and how to group your data.
@@ -191,7 +209,7 @@ For more information, see:
191209

192210
## Limitations and considerations
193211

194-
Be aware of these current limitations:
212+
Be aware of these limitations:
195213

196214
- Anomaly detection is disabled if the input table doesn't match the required schema (numeric value column, datetime column, and string column).
197215
- Sufficient historical data improves model recommendations and accuracy.
@@ -215,9 +233,9 @@ To avoid problems:
215233

216234
For more information, see [Python Plugin](/kusto/query/python-plugin?view=microsoft-fabric&preserve-view=true).
217235

218-
## Wait times for enabling the Python Plugin
236+
## Wait times for enabling the Python plugin
219237

220-
When you start data analysis, the anomaly detector automatically enables the Python Plugin on your Eventhouse. Enabling the plugin can take up to one hour. Once enabled, the analysis starts automatically.
238+
When you start data analysis, the anomaly detector automatically enables the Python plugin on your Eventhouse. Enabling the plugin can take up to one hour. Once enabled, the analysis starts automatically.
221239

222240
For more information, see [Enable Python plugin in Real-Time Intelligence](python-plugin.md).
223241

70 KB
Loading
90.3 KB
Loading

0 commit comments

Comments
 (0)