From 6026a7b463dbc7687c628ebad1fd235542e38f63 Mon Sep 17 00:00:00 2001
From: ktalmor <193799742+ktalmor@users.noreply.github.com>
Date: Sun, 26 Jan 2025 19:20:29 +0200
Subject: [PATCH 01/12] replace branch PR 6555 (3)
---
data-explorer/kusto/query/sort-operator.md | 9 ++++++---
.../kusto/query/summarize-operator.md | 20 ++++++-------------
.../query/tabular-expression-statements.md | 2 +-
.../kusto/query/visualization-anomalychart.md | 4 +++-
.../kusto/query/visualization-areachart.md | 6 ++++--
.../kusto/query/visualization-barchart.md | 7 ++++---
.../kusto/query/visualization-card.md | 4 +++-
.../kusto/query/visualization-columnchart.md | 7 +++----
.../kusto/query/visualization-ladderchart.md | 6 ++++--
.../kusto/query/visualization-linechart.md | 6 ++++--
10 files changed, 38 insertions(+), 33 deletions(-)
diff --git a/data-explorer/kusto/query/sort-operator.md b/data-explorer/kusto/query/sort-operator.md
index 056f718fac..059d001c6c 100644
--- a/data-explorer/kusto/query/sort-operator.md
+++ b/data-explorer/kusto/query/sort-operator.md
@@ -3,13 +3,12 @@ title: sort operator
description: Learn how to use the sort operator to sort the rows of the input table by one or more columns.
ms.reviewer: alexans
ms.topic: reference
-ms.date: 08/11/2024
+ms.date: 01/21/2025
monikerRange: "microsoft-fabric || azure-data-explorer || azure-monitor || microsoft-sentinel "
---
# sort operator
-> [!INCLUDE [applies](../includes/applies-to-version/applies.md)] [!INCLUDE [fabric](../includes/applies-to-version/fabric.md)] [!INCLUDE [azure-data-explorer](../includes/applies-to-version/azure-data-explorer.md)] [!INCLUDE [monitor](../includes/applies-to-version/monitor.md)] [!INCLUDE [sentinel](../includes/applies-to-version/sentinel.md)]
-
+> [!INCLUDE [applies](../includes/applies-to-version/applies.md)] [!INCLUDE [fabric](../includes/applies-to-version/fabric.md)] [!INCLUDE [azure-data-explorer](../includes/applies-to-version/azure-data-explorer.md)] [!INCLUDE [monitor](../includes/applies-to-version/monitor.md)] [!INCLUDE [sentinel](../includes/applies-to-version/sentinel.md)]
Sorts the rows of the input table into order by one or more columns.
@@ -50,6 +49,8 @@ When the input table contains the special values `null`, `NaN`, `-inf` and `+inf
## Example
+[!INCLUDE [help-cluster-note](../includes/help-cluster-note.md)]
+
The following example shows storm events by state in alphabetical order with the most recent storms in each state appearing first.
:::moniker range="azure-data-explorer"
@@ -62,6 +63,8 @@ StormEvents
| sort by State asc, StartTime desc
```
+**Output**
+
This table only shows the top 10 query results.
|StartTime|State|EventType|...|
diff --git a/data-explorer/kusto/query/summarize-operator.md b/data-explorer/kusto/query/summarize-operator.md
index cbd5f974c5..db6917a238 100644
--- a/data-explorer/kusto/query/summarize-operator.md
+++ b/data-explorer/kusto/query/summarize-operator.md
@@ -3,14 +3,13 @@ title: summarize operator
description: Learn how to use the summarize operator to produce a table that summarizes the content of the input table.
ms.reviewer: alexans
ms.topic: reference
-ms.date: 08/11/2024
+ms.date: 01/21/2025
ms.localizationpriority: high
monikerRange: "microsoft-fabric || azure-data-explorer || azure-monitor || microsoft-sentinel "
---
# summarize operator
-> [!INCLUDE [applies](../includes/applies-to-version/applies.md)] [!INCLUDE [fabric](../includes/applies-to-version/fabric.md)] [!INCLUDE [azure-data-explorer](../includes/applies-to-version/azure-data-explorer.md)] [!INCLUDE [monitor](../includes/applies-to-version/monitor.md)] [!INCLUDE [sentinel](../includes/applies-to-version/sentinel.md)]
-
+> [!INCLUDE [applies](../includes/applies-to-version/applies.md)] [!INCLUDE [fabric](../includes/applies-to-version/fabric.md)] [!INCLUDE [azure-data-explorer](../includes/applies-to-version/azure-data-explorer.md)] [!INCLUDE [monitor](../includes/applies-to-version/monitor.md)] [!INCLUDE [sentinel](../includes/applies-to-version/sentinel.md)]
Produces a table that aggregates the content of the input table.
@@ -30,7 +29,7 @@ Produces a table that aggregates the content of the input table.
|*Column*| `string` ||The name for the result column. Defaults to a name derived from the expression.|
|*Aggregation*| `string` | :heavy_check_mark:|A call to an [aggregation function](aggregation-functions.md) such as `count()` or `avg()`, with column names as arguments.|
|*GroupExpression*|scalar| :heavy_check_mark:|A scalar expression that can reference the input data. The output will have as many records as there are distinct values of all the group expressions.|
-|*SummarizeParameters*| `string` ||Zero or more space-separated parameters in the form of *Name* `=` *Value* that control the behavior. See [supported parameters](#supported-parameters).
+|*SummarizeParameters*| `string` ||Zero or more space-separated parameters in the form of *Name* `=` *Value* that control the behavior. See [supported parameters](#supported-parameters).|
> [!NOTE]
> When the input table is empty, the output depends on whether *GroupExpression*
@@ -39,7 +38,6 @@ Produces a table that aggregates the content of the input table.
> * If *GroupExpression* is not provided, the output will be a single (empty) row.
> * If *GroupExpression* is provided, the output will have no rows.
-
### Supported parameters
|Name |Description |
@@ -78,6 +76,8 @@ The following table summarizes the default values of aggregations:
## Examples
+[!INCLUDE [help-cluster-note](../includes/help-cluster-note.md)]
+
:::image type="content" source="media/summarizeoperator/summarize-price-by-supplier.png" alt-text="Summarize price by fruit and supplier.":::
### Unique combination
@@ -131,6 +131,7 @@ StormEvents
| 01:08:00 | 11:55:00 |
::: moniker range="microsoft-fabric || azure-data-explorer || azure-monitor || microsoft-sentinel"
+
### Distinct count
The following query calculates the number of unique storm event types for each state and sorts the results by the number of unique storm types:
@@ -192,7 +193,6 @@ When the input of `summarize` operator doesn't have an empty group-by key, the r
> [!div class="nextstepaction"]
> Run the query
-
```kusto
datatable(x:long)[]
| summarize any_x=take_any(x), arg_max_x=arg_max(x, *), arg_min_x=arg_min(x, *), avg(x), buildschema(todynamic(tostring(x))), max(x), min(x), percentile(x, 55), hll(x) ,stdev(x), sum(x), sumif(x, x > 0), tdigest(x), variance(x)
@@ -206,11 +206,9 @@ datatable(x:long)[]
The result of `avg_x(x)` is `NaN` due to dividing by 0.
-
> [!div class="nextstepaction"]
> Run the query
-
```kusto
datatable(x:long)[]
| summarize count(x), countif(x > 0) , dcount(x), dcountif(x, x > 0)
@@ -222,11 +220,9 @@ datatable(x:long)[]
|---|---|---|---|
|0|0|0|0|
-
> [!div class="nextstepaction"]
> Run the query
-
```kusto
datatable(x:long)[]
| summarize make_set(x), make_list(x)
@@ -259,11 +255,9 @@ range x from 1 to 4 step 1
The regular count will count nulls:
-
> [!div class="nextstepaction"]
> Run the query
-
```kusto
range x from 1 to 2 step 1
| extend y = iff(x == 1, real(null), real(5))
@@ -276,11 +270,9 @@ range x from 1 to 2 step 1
|---|
|2|
-
> [!div class="nextstepaction"]
> Run the query
-
```kusto
range x from 1 to 2 step 1
| extend y = iff(x == 1, real(null), real(5))
diff --git a/data-explorer/kusto/query/tabular-expression-statements.md b/data-explorer/kusto/query/tabular-expression-statements.md
index 3b5d738cb5..4afdee8191 100644
--- a/data-explorer/kusto/query/tabular-expression-statements.md
+++ b/data-explorer/kusto/query/tabular-expression-statements.md
@@ -41,7 +41,7 @@ A tabular data source produces sets of records, to be further processed by tabul
## Examples
-[!INCLUDE [help-cluster](../includes/help-cluster-samples-stormevents.md)]
+[!INCLUDE [help-cluster](../includes/help-cluster-note.md)]
### Filter rows by condition
diff --git a/data-explorer/kusto/query/visualization-anomalychart.md b/data-explorer/kusto/query/visualization-anomalychart.md
index c435718e2a..ea10652891 100644
--- a/data-explorer/kusto/query/visualization-anomalychart.md
+++ b/data-explorer/kusto/query/visualization-anomalychart.md
@@ -3,7 +3,7 @@ title: Anomaly chart visualization
description: This article describes the anomaly chart visualization.
ms.reviewer: alexans
ms.topic: reference
-ms.date: 08/11/2024
+ms.date: 01/21/2025
monikerRange: "microsoft-fabric || azure-data-explorer"
---
# Anomaly chart
@@ -61,6 +61,8 @@ This visualization supports splitting into multiple y-axis values. The supported
## Example
+[!INCLUDE [help-cluster-note](../includes/help-cluster-note.md)]
+
:::moniker range="azure-data-explorer"
> [!div class="nextstepaction"]
> Run the query
diff --git a/data-explorer/kusto/query/visualization-areachart.md b/data-explorer/kusto/query/visualization-areachart.md
index 8549bcfa5a..0d551025a9 100644
--- a/data-explorer/kusto/query/visualization-areachart.md
+++ b/data-explorer/kusto/query/visualization-areachart.md
@@ -3,7 +3,7 @@ title: Area chart visualization
description: This article describes the area chart visualization.
ms.reviewer: alexans
ms.topic: reference
-ms.date: 08/11/2024
+ms.date: 01/21/2025
monikerRange: "microsoft-fabric || azure-data-explorer || azure-monitor || microsoft-sentinel"
---
# Area chart
@@ -25,7 +25,7 @@ The area chart visual shows a time-series relationship. The first column of the
| Name | Type | Required | Description |
| -- | -- | -- | -- |
-| *T* | `string` | :heavy_check_mark: | Input table name.
+| *T* | `string` | :heavy_check_mark: | Input table name.|
| *propertyName*, *propertyValue* | `string` | | A comma-separated list of key-value property pairs. See [supported properties](#supported-properties).|
::: moniker range="microsoft-fabric || azure-data-explorer"
@@ -80,6 +80,8 @@ The supported values of this property are:
## Example
+[!INCLUDE [help-cluster-note](../includes/help-cluster-note.md)]
+
:::moniker range="azure-data-explorer"
> [!div class="nextstepaction"]
> Run the query
diff --git a/data-explorer/kusto/query/visualization-barchart.md b/data-explorer/kusto/query/visualization-barchart.md
index 88d054340c..70d34943cc 100644
--- a/data-explorer/kusto/query/visualization-barchart.md
+++ b/data-explorer/kusto/query/visualization-barchart.md
@@ -3,7 +3,7 @@ title: Bar chart visualization
description: This article describes the bar chart visualization.
ms.reviewer: alexans
ms.topic: reference
-ms.date: 08/11/2024
+ms.date: 01/21/2025
monikerRange: "microsoft-fabric || azure-data-explorer || azure-monitor || microsoft-sentinel"
---
# Bar chart
@@ -91,6 +91,8 @@ The supported values of this property are:
## Examples
+[!INCLUDE [help-cluster-note](../includes/help-cluster-note.md)]
+
### Render a bar chart
The following query creates a bar chart displaying the number of storm events for each state, filtering only those states with more than 10 events. The chart provides a visual representation of the event distribution across different states.
@@ -189,5 +191,4 @@ StormEvents
:::image type="content" source="media/visualization-barchart/bar-chart-ysplit-panels.png" alt-text="Screenshot of column chart using ysplit panels property." lightbox="media/visualization-barchart/bar-chart-ysplit-panels.png":::
-
-::: moniker-end
\ No newline at end of file
+::: moniker-end
diff --git a/data-explorer/kusto/query/visualization-card.md b/data-explorer/kusto/query/visualization-card.md
index 0072548e6d..3e1dbde079 100644
--- a/data-explorer/kusto/query/visualization-card.md
+++ b/data-explorer/kusto/query/visualization-card.md
@@ -3,7 +3,7 @@ title: Card visualization
description: This article describes the card visualization.
ms.reviewer: alexans
ms.topic: reference
-ms.date: 08/11/2024
+ms.date: 01/21/2025
monikerRange: "microsoft-fabric || azure-data-explorer"
---
# Card
@@ -38,6 +38,8 @@ All properties are optional.
## Example
+[!INCLUDE [help-cluster-note](../includes/help-cluster-note.md)]
+
:::moniker range="azure-data-explorer"
> [!div class="nextstepaction"]
> Run the query
diff --git a/data-explorer/kusto/query/visualization-columnchart.md b/data-explorer/kusto/query/visualization-columnchart.md
index 86c1c855ff..eece0c3eae 100644
--- a/data-explorer/kusto/query/visualization-columnchart.md
+++ b/data-explorer/kusto/query/visualization-columnchart.md
@@ -3,7 +3,7 @@ title: Column chart visualization
description: This article describes the column chart visualization.
ms.reviewer: alexans
ms.topic: reference
-ms.date: 08/11/2024
+ms.date: 01/21/2025
monikerRange: "microsoft-fabric || azure-data-explorer || azure-monitor || microsoft-sentinel"
---
# Column chart
@@ -93,13 +93,13 @@ The supported values of this property are:
## Examples
-### Render a column chart
+[!INCLUDE [help-cluster-note](../includes/help-cluster-note.md)]
+### Render a column chart
> [!div class="nextstepaction"]
> Run the query
-
```kusto
StormEvents
| summarize event_count=count() by State
@@ -132,7 +132,6 @@ To split the view into separate panels, specify `panels` instead of `axes`:
> [!div class="nextstepaction"]
> Run the query
-
```kusto
StormEvents
| summarize
diff --git a/data-explorer/kusto/query/visualization-ladderchart.md b/data-explorer/kusto/query/visualization-ladderchart.md
index 3090fb323b..b5edc9dfd3 100644
--- a/data-explorer/kusto/query/visualization-ladderchart.md
+++ b/data-explorer/kusto/query/visualization-ladderchart.md
@@ -3,7 +3,7 @@ title: Ladder chart visualization
description: This article describes the ladder chart visualization.
ms.reviewer: alexans
ms.topic: reference
-ms.date: 08/11/2024
+ms.date: 01/21/2025
monikerRange: "azure-data-explorer"
---
# Ladder chart
@@ -26,7 +26,7 @@ The last two columns are the x-axis, and the other columns are the y-axis.
| Name | Type | Required | Description |
| -- | -- | -- | -- |
-| *T* | `string` | :heavy_check_mark: | Input table name.
+| *T* | `string` | :heavy_check_mark: | Input table name|
| *propertyName*, *propertyValue* | `string` | | A comma-separated list of key-value property pairs. See [supported properties](#supported-properties).|
### Supported properties
@@ -50,6 +50,8 @@ All properties are optional.
## Examples
+[!INCLUDE [help-cluster-note](../includes/help-cluster-note.md)]
+
### Dates of storms by state
```kusto
diff --git a/data-explorer/kusto/query/visualization-linechart.md b/data-explorer/kusto/query/visualization-linechart.md
index f0f7f86e8b..1f67742b14 100644
--- a/data-explorer/kusto/query/visualization-linechart.md
+++ b/data-explorer/kusto/query/visualization-linechart.md
@@ -3,7 +3,7 @@ title: Line chart visualization
description: This article describes the line chart visualization.
ms.reviewer: alexans
ms.topic: reference
-ms.date: 08/11/2024
+ms.date: 01/21/2025
monikerRange: "microsoft-fabric || azure-data-explorer"
---
# Line chart
@@ -25,7 +25,7 @@ The line chart visual is the most basic type of chart. The first column of the q
| Name | Type | Required | Description |
| -- | -- | -- | -- |
-| *T* | `string` | :heavy_check_mark: | Input table name.
+| *T* | `string` | :heavy_check_mark: | Input table name.|
| *propertyName*, *propertyValue* | `string` | | A comma-separated list of key-value property pairs. See [supported properties](#supported-properties).|
### Supported properties
@@ -60,6 +60,8 @@ This visualization supports splitting into multiple y-axis values:
## Examples
+[!INCLUDE [help-cluster-note](../includes/help-cluster-note.md)]
+
### Render a line chart
:::moniker range="azure-data-explorer"
From 676758de70a4a18c620a36b5cd0177738c522dc7 Mon Sep 17 00:00:00 2001
From: ktalmor <193799742+ktalmor@users.noreply.github.com>
Date: Tue, 28 Jan 2025 18:53:30 +0200
Subject: [PATCH 02/12] Added example descriptions
---
data-explorer/kusto/query/visualization-areachart.md | 4 +++-
data-explorer/kusto/query/visualization-barchart.md | 6 +++++-
data-explorer/kusto/query/visualization-card.md | 4 +++-
data-explorer/kusto/query/visualization-columnchart.md | 6 +++++-
data-explorer/kusto/query/visualization-ladderchart.md | 10 +++++++++-
5 files changed, 25 insertions(+), 5 deletions(-)
diff --git a/data-explorer/kusto/query/visualization-areachart.md b/data-explorer/kusto/query/visualization-areachart.md
index 0d551025a9..1dca632627 100644
--- a/data-explorer/kusto/query/visualization-areachart.md
+++ b/data-explorer/kusto/query/visualization-areachart.md
@@ -3,7 +3,7 @@ title: Area chart visualization
description: This article describes the area chart visualization.
ms.reviewer: alexans
ms.topic: reference
-ms.date: 01/21/2025
+ms.date: 01/28/2025
monikerRange: "microsoft-fabric || azure-data-explorer || azure-monitor || microsoft-sentinel"
---
# Area chart
@@ -82,6 +82,8 @@ The supported values of this property are:
[!INCLUDE [help-cluster-note](../includes/help-cluster-note.md)]
+This query takes the data from demo_series3 and generates an area chart.
+
:::moniker range="azure-data-explorer"
> [!div class="nextstepaction"]
> Run the query
diff --git a/data-explorer/kusto/query/visualization-barchart.md b/data-explorer/kusto/query/visualization-barchart.md
index 70d34943cc..df5916f79e 100644
--- a/data-explorer/kusto/query/visualization-barchart.md
+++ b/data-explorer/kusto/query/visualization-barchart.md
@@ -3,7 +3,7 @@ title: Bar chart visualization
description: This article describes the bar chart visualization.
ms.reviewer: alexans
ms.topic: reference
-ms.date: 01/21/2025
+ms.date: 01/28/2025
monikerRange: "microsoft-fabric || azure-data-explorer || azure-monitor || microsoft-sentinel"
---
# Bar chart
@@ -93,6 +93,8 @@ The supported values of this property are:
[!INCLUDE [help-cluster-note](../includes/help-cluster-note.md)]
+Review the examples and run them in your Data Explorer query page.
+
### Render a bar chart
The following query creates a bar chart displaying the number of storm events for each state, filtering only those states with more than 10 events. The chart provides a visual representation of the event distribution across different states.
@@ -159,6 +161,8 @@ StormEvents
### Use the `ysplit` property
+The following query provides a daily summary of storm-related injuries and deaths, visualized as a bar chart with split axes/panels for better comparison.
+
> [!div class="nextstepaction"]
> Run the query
diff --git a/data-explorer/kusto/query/visualization-card.md b/data-explorer/kusto/query/visualization-card.md
index 3e1dbde079..8cea51e3bf 100644
--- a/data-explorer/kusto/query/visualization-card.md
+++ b/data-explorer/kusto/query/visualization-card.md
@@ -3,7 +3,7 @@ title: Card visualization
description: This article describes the card visualization.
ms.reviewer: alexans
ms.topic: reference
-ms.date: 01/21/2025
+ms.date: 01/28/2025
monikerRange: "microsoft-fabric || azure-data-explorer"
---
# Card
@@ -40,6 +40,8 @@ All properties are optional.
[!INCLUDE [help-cluster-note](../includes/help-cluster-note.md)]
+This query provides a count of flood events in Virginia and displays the result in a card format.
+
:::moniker range="azure-data-explorer"
> [!div class="nextstepaction"]
> Run the query
diff --git a/data-explorer/kusto/query/visualization-columnchart.md b/data-explorer/kusto/query/visualization-columnchart.md
index eece0c3eae..15320c0663 100644
--- a/data-explorer/kusto/query/visualization-columnchart.md
+++ b/data-explorer/kusto/query/visualization-columnchart.md
@@ -3,7 +3,7 @@ title: Column chart visualization
description: This article describes the column chart visualization.
ms.reviewer: alexans
ms.topic: reference
-ms.date: 01/21/2025
+ms.date: 01/28/2025
monikerRange: "microsoft-fabric || azure-data-explorer || azure-monitor || microsoft-sentinel"
---
# Column chart
@@ -97,6 +97,8 @@ The supported values of this property are:
### Render a column chart
+This query provides a visual representation of states with a high frequency of storm events, specifically those with more than 10 events, using a column chart.
+
> [!div class="nextstepaction"]
> Run the query
@@ -112,6 +114,8 @@ StormEvents
### Use the `ysplit` property
+This query provides a daily summary of storm-related injuries and deaths, visualized as a column chart with split axes/panels for better comparison.
+
> [!div class="nextstepaction"]
> Run the query
diff --git a/data-explorer/kusto/query/visualization-ladderchart.md b/data-explorer/kusto/query/visualization-ladderchart.md
index b5edc9dfd3..5571a87f22 100644
--- a/data-explorer/kusto/query/visualization-ladderchart.md
+++ b/data-explorer/kusto/query/visualization-ladderchart.md
@@ -3,7 +3,7 @@ title: Ladder chart visualization
description: This article describes the ladder chart visualization.
ms.reviewer: alexans
ms.topic: reference
-ms.date: 01/21/2025
+ms.date: 01/28/2025
monikerRange: "azure-data-explorer"
---
# Ladder chart
@@ -52,8 +52,12 @@ All properties are optional.
[!INCLUDE [help-cluster-note](../includes/help-cluster-note.md)]
+Review the examples and run them in your Data Explorer query page.
+
### Dates of storms by state
+This query outputs a state-wise visualization of the duration of rain-related storm events, displayed as a ladder chart to help you analyze the temporal distribution of these events.
+
```kusto
StormEvents
| where EventType has "rain"
@@ -65,6 +69,8 @@ StormEvents
### Dates of storms by event type
+This query outputs a visualization of the duration of various storm events in Washington, displayed as a ladder chart to help you analyze the temporal distribution of these events by type.
+
```kusto
StormEvents
| where State == "WASHINGTON"
@@ -76,6 +82,8 @@ StormEvents
### Dates of storms by state and event type
+Tthis query outputs a visualization of the duration of various storm events in states starting with "W", displayed as a ladder chart to help you analyze the temporal distribution of these events by state and event type.
+
```kusto
StormEvents
| where State startswith "W"
From 3fcb4c6f8aa42f9d5f7e92fd4b2198511d472420 Mon Sep 17 00:00:00 2001
From: ktalmor <193799742+ktalmor@users.noreply.github.com>
Date: Wed, 29 Jan 2025 10:54:53 +0200
Subject: [PATCH 03/12] small fixes
---
.../kusto/query/visualization-anomalychart.md | 2 --
data-explorer/kusto/query/visualization-areachart.md | 4 +---
data-explorer/kusto/query/visualization-columnchart.md | 5 +++--
data-explorer/kusto/query/visualization-ladderchart.md | 4 ++--
data-explorer/kusto/query/visualization-linechart.md | 10 +++++++++-
5 files changed, 15 insertions(+), 10 deletions(-)
diff --git a/data-explorer/kusto/query/visualization-anomalychart.md b/data-explorer/kusto/query/visualization-anomalychart.md
index ea10652891..d85c8e263c 100644
--- a/data-explorer/kusto/query/visualization-anomalychart.md
+++ b/data-explorer/kusto/query/visualization-anomalychart.md
@@ -61,8 +61,6 @@ This visualization supports splitting into multiple y-axis values. The supported
## Example
-[!INCLUDE [help-cluster-note](../includes/help-cluster-note.md)]
-
:::moniker range="azure-data-explorer"
> [!div class="nextstepaction"]
> Run the query
diff --git a/data-explorer/kusto/query/visualization-areachart.md b/data-explorer/kusto/query/visualization-areachart.md
index 1dca632627..966d3ab921 100644
--- a/data-explorer/kusto/query/visualization-areachart.md
+++ b/data-explorer/kusto/query/visualization-areachart.md
@@ -80,8 +80,6 @@ The supported values of this property are:
## Example
-[!INCLUDE [help-cluster-note](../includes/help-cluster-note.md)]
-
This query takes the data from demo_series3 and generates an area chart.
:::moniker range="azure-data-explorer"
@@ -94,4 +92,4 @@ demo_series3
| render areachart
```
-:::image type="content" source="media/visualization-areachart/area-chart.png" alt-text="Screenshot of area chart visualization." lightbox="media/visualization-areachart/area-chart.png":::
\ No newline at end of file
+:::image type="content" source="media/visualization-areachart/area-chart.png" alt-text="Screenshot of area chart visualization." lightbox="media/visualization-areachart/area-chart.png":::
diff --git a/data-explorer/kusto/query/visualization-columnchart.md b/data-explorer/kusto/query/visualization-columnchart.md
index 15320c0663..69ac0aac2b 100644
--- a/data-explorer/kusto/query/visualization-columnchart.md
+++ b/data-explorer/kusto/query/visualization-columnchart.md
@@ -3,8 +3,7 @@ title: Column chart visualization
description: This article describes the column chart visualization.
ms.reviewer: alexans
ms.topic: reference
-ms.date: 01/28/2025
-monikerRange: "microsoft-fabric || azure-data-explorer || azure-monitor || microsoft-sentinel"
+ms.date: 01/29/2025
---
# Column chart
@@ -154,6 +153,8 @@ StormEvents
## Example
+This query helps you identify states with a significant number of storm events and presents the information in a clear, visual format.
+
> [!div class="nextstepaction"]
> Run the query
diff --git a/data-explorer/kusto/query/visualization-ladderchart.md b/data-explorer/kusto/query/visualization-ladderchart.md
index 5571a87f22..c168f0719e 100644
--- a/data-explorer/kusto/query/visualization-ladderchart.md
+++ b/data-explorer/kusto/query/visualization-ladderchart.md
@@ -3,7 +3,7 @@ title: Ladder chart visualization
description: This article describes the ladder chart visualization.
ms.reviewer: alexans
ms.topic: reference
-ms.date: 01/28/2025
+ms.date: 01/29/2025
monikerRange: "azure-data-explorer"
---
# Ladder chart
@@ -82,7 +82,7 @@ StormEvents
### Dates of storms by state and event type
-Tthis query outputs a visualization of the duration of various storm events in states starting with "W", displayed as a ladder chart to help you analyze the temporal distribution of these events by state and event type.
+This query outputs a visualization of the duration of various storm events in states starting with "W", displayed as a ladder chart to help you analyze the temporal distribution of these events by state and event type.
```kusto
StormEvents
diff --git a/data-explorer/kusto/query/visualization-linechart.md b/data-explorer/kusto/query/visualization-linechart.md
index 1f67742b14..6e356e5083 100644
--- a/data-explorer/kusto/query/visualization-linechart.md
+++ b/data-explorer/kusto/query/visualization-linechart.md
@@ -3,7 +3,7 @@ title: Line chart visualization
description: This article describes the line chart visualization.
ms.reviewer: alexans
ms.topic: reference
-ms.date: 01/21/2025
+ms.date: 01/29/2025
monikerRange: "microsoft-fabric || azure-data-explorer"
---
# Line chart
@@ -64,6 +64,8 @@ This visualization supports splitting into multiple y-axis values:
### Render a line chart
+This query retrieves storm events in Virginia, focusing on the start time and property damage, and then displays this information in a line chart.
+
:::moniker range="azure-data-explorer"
> [!div class="nextstepaction"]
> Run the query
@@ -80,6 +82,8 @@ StormEvents
### Label a line chart
+This query retrieves storm events in Virginia, focusing on the start time and property damage, and then displays this information in a line chart with specified titles for better clarity and presentation.
+
:::moniker range="azure-data-explorer"
> [!div class="nextstepaction"]
> Run the query
@@ -101,6 +105,8 @@ StormEvents
### Limit values displayed on the y-axis
+This query retrieves storm events in Virginia, focusing on the start time and property damage, and then displays this information in a line chart with specified y-axis limits for better visualization of the data.
+
:::moniker range="azure-data-explorer"
> [!div class="nextstepaction"]
> Run the query
@@ -117,6 +123,8 @@ StormEvents
### View multiple y-axes
+This query retrieves hail events in Texas, Nebraska, and Kansas. It counts the number of hail events per day for each state, and then displays this information in a line chart with separate panels for each state.
+
:::moniker range="azure-data-explorer"
> [!div class="nextstepaction"]
> Run the query
From dab2a4c79ab990e051d954f41a3648343e9f5a7d Mon Sep 17 00:00:00 2001
From: ktalmor <193799742+ktalmor@users.noreply.github.com>
Date: Wed, 29 Jan 2025 16:01:10 +0200
Subject: [PATCH 04/12] removed sentence
---
data-explorer/kusto/query/visualization-barchart.md | 2 --
data-explorer/kusto/query/visualization-ladderchart.md | 2 --
2 files changed, 4 deletions(-)
diff --git a/data-explorer/kusto/query/visualization-barchart.md b/data-explorer/kusto/query/visualization-barchart.md
index d800dc36d0..0ad5089eae 100644
--- a/data-explorer/kusto/query/visualization-barchart.md
+++ b/data-explorer/kusto/query/visualization-barchart.md
@@ -93,8 +93,6 @@ The supported values of this property are:
[!INCLUDE [help-cluster-note](../includes/help-cluster-note.md)]
-Review the examples and run them in your Data Explorer query page.
-
### Render a bar chart
The following query creates a bar chart displaying the number of storm events for each state, filtering only those states with more than 10 events. The chart provides a visual representation of the event distribution across different states.
diff --git a/data-explorer/kusto/query/visualization-ladderchart.md b/data-explorer/kusto/query/visualization-ladderchart.md
index c168f0719e..0ab88a20e1 100644
--- a/data-explorer/kusto/query/visualization-ladderchart.md
+++ b/data-explorer/kusto/query/visualization-ladderchart.md
@@ -52,8 +52,6 @@ All properties are optional.
[!INCLUDE [help-cluster-note](../includes/help-cluster-note.md)]
-Review the examples and run them in your Data Explorer query page.
-
### Dates of storms by state
This query outputs a state-wise visualization of the duration of rain-related storm events, displayed as a ladder chart to help you analyze the temporal distribution of these events.
From e148f17c8dfb0019e9fe46331af47780d3fe7100 Mon Sep 17 00:00:00 2001
From: ktalmor <193799742+ktalmor@users.noreply.github.com>
Date: Wed, 5 Feb 2025 12:55:18 +0200
Subject: [PATCH 05/12] Added Examples introductory sentence
---
data-explorer/kusto/query/summarize-operator.md | 4 +++-
data-explorer/kusto/query/visualization-anomalychart.md | 4 ++++
data-explorer/kusto/query/visualization-areachart.md | 5 ++++-
data-explorer/kusto/query/visualization-barchart.md | 4 +++-
data-explorer/kusto/query/visualization-card.md | 4 ++--
data-explorer/kusto/query/visualization-columnchart.md | 4 +++-
data-explorer/kusto/query/visualization-ladderchart.md | 4 +++-
data-explorer/kusto/query/visualization-linechart.md | 4 +++-
8 files changed, 25 insertions(+), 8 deletions(-)
diff --git a/data-explorer/kusto/query/summarize-operator.md b/data-explorer/kusto/query/summarize-operator.md
index db6917a238..ce25a5584d 100644
--- a/data-explorer/kusto/query/summarize-operator.md
+++ b/data-explorer/kusto/query/summarize-operator.md
@@ -76,7 +76,9 @@ The following table summarizes the default values of aggregations:
## Examples
-[!INCLUDE [help-cluster-note](../includes/help-cluster-note.md)]
+The example in this section shows how to use the syntax to help you get started.
+
+[!INCLUDE [help-cluster](../includes/help-cluster-note.md)]
:::image type="content" source="media/summarizeoperator/summarize-price-by-supplier.png" alt-text="Summarize price by fruit and supplier.":::
diff --git a/data-explorer/kusto/query/visualization-anomalychart.md b/data-explorer/kusto/query/visualization-anomalychart.md
index 929b88fc98..c32dab11ae 100644
--- a/data-explorer/kusto/query/visualization-anomalychart.md
+++ b/data-explorer/kusto/query/visualization-anomalychart.md
@@ -61,6 +61,10 @@ This visualization supports splitting into multiple y-axis values. The supported
## Example
+The example in this section shows how to use the syntax to help you get started.
+
+[!INCLUDE [help-cluster](../includes/help-cluster-note.md)]
+
:::moniker range="azure-data-explorer"
> [!div class="nextstepaction"]
> Run the query
diff --git a/data-explorer/kusto/query/visualization-areachart.md b/data-explorer/kusto/query/visualization-areachart.md
index 9951c5a3d3..5f812ca150 100644
--- a/data-explorer/kusto/query/visualization-areachart.md
+++ b/data-explorer/kusto/query/visualization-areachart.md
@@ -61,7 +61,6 @@ This visualization supports splitting into multiple y-axis values:
|`axes` |A single chart is displayed with multiple y-axes (one per series).|
|`panels` |One chart is rendered for each `ycolumn` value. Maximum five panels.|
-
::: moniker-end
::: moniker range="azure-monitor || microsoft-sentinel"
@@ -92,6 +91,10 @@ The supported values of this property are:
## Examples
+The example in this section shows how to use the syntax to help you get started.
+
+[!INCLUDE [help-cluster](../includes/help-cluster-note.md)]
+
### Simple area chart
The following example shows a basic area chart visualization.
diff --git a/data-explorer/kusto/query/visualization-barchart.md b/data-explorer/kusto/query/visualization-barchart.md
index 0ad5089eae..a428fe82f1 100644
--- a/data-explorer/kusto/query/visualization-barchart.md
+++ b/data-explorer/kusto/query/visualization-barchart.md
@@ -91,7 +91,9 @@ The supported values of this property are:
## Examples
-[!INCLUDE [help-cluster-note](../includes/help-cluster-note.md)]
+The example in this section shows how to use the syntax to help you get started.
+
+[!INCLUDE [help-cluster](../includes/help-cluster-note.md)]
### Render a bar chart
diff --git a/data-explorer/kusto/query/visualization-card.md b/data-explorer/kusto/query/visualization-card.md
index 8cea51e3bf..ea1e5f7a1c 100644
--- a/data-explorer/kusto/query/visualization-card.md
+++ b/data-explorer/kusto/query/visualization-card.md
@@ -38,10 +38,10 @@ All properties are optional.
## Example
-[!INCLUDE [help-cluster-note](../includes/help-cluster-note.md)]
-
This query provides a count of flood events in Virginia and displays the result in a card format.
+[!INCLUDE [help-cluster-note](../includes/help-cluster-note.md)]
+
:::moniker range="azure-data-explorer"
> [!div class="nextstepaction"]
> Run the query
diff --git a/data-explorer/kusto/query/visualization-columnchart.md b/data-explorer/kusto/query/visualization-columnchart.md
index 0ee1f643ab..c47c1a7e07 100644
--- a/data-explorer/kusto/query/visualization-columnchart.md
+++ b/data-explorer/kusto/query/visualization-columnchart.md
@@ -92,7 +92,9 @@ The supported values of this property are:
## Examples
-[!INCLUDE [help-cluster-note](../includes/help-cluster-note.md)]
+The example in this section shows how to use the syntax to help you get started.
+
+[!INCLUDE [help-cluster](../includes/help-cluster-note.md)]
### Render a column chart
diff --git a/data-explorer/kusto/query/visualization-ladderchart.md b/data-explorer/kusto/query/visualization-ladderchart.md
index 0ab88a20e1..6b33c32908 100644
--- a/data-explorer/kusto/query/visualization-ladderchart.md
+++ b/data-explorer/kusto/query/visualization-ladderchart.md
@@ -50,7 +50,9 @@ All properties are optional.
## Examples
-[!INCLUDE [help-cluster-note](../includes/help-cluster-note.md)]
+The example in this section shows how to use the syntax to help you get started.
+
+[!INCLUDE [help-cluster](../includes/help-cluster-note.md)]
### Dates of storms by state
diff --git a/data-explorer/kusto/query/visualization-linechart.md b/data-explorer/kusto/query/visualization-linechart.md
index 83c212f4b8..897134a9c7 100644
--- a/data-explorer/kusto/query/visualization-linechart.md
+++ b/data-explorer/kusto/query/visualization-linechart.md
@@ -60,7 +60,9 @@ This visualization supports splitting into multiple y-axis values:
## Examples
-[!INCLUDE [help-cluster-note](../includes/help-cluster-note.md)]
+The example in this section shows how to use the syntax to help you get started.
+
+[!INCLUDE [help-cluster](../includes/help-cluster-note.md)]
### Render a line chart
From 1514ee351897a4217e0664e66a482021b89c280f Mon Sep 17 00:00:00 2001
From: ktalmor <193799742+ktalmor@users.noreply.github.com>
Date: Thu, 6 Feb 2025 10:49:00 +0200
Subject: [PATCH 06/12] Added Jan 2025
---
data-explorer/whats-new-archive.md | 9 +++++++++
data-explorer/whats-new.md | 28 ++++++++++++++++++++--------
2 files changed, 29 insertions(+), 8 deletions(-)
diff --git a/data-explorer/whats-new-archive.md b/data-explorer/whats-new-archive.md
index 08dcee38cf..4dfb4bd7af 100644
--- a/data-explorer/whats-new-archive.md
+++ b/data-explorer/whats-new-archive.md
@@ -9,6 +9,15 @@ ms.date: 12/11/2024
Welcome to what's new in Azure Data Explorer archive. This article is an archive of new and significantly updated content in the Azure Data Explorer documentation.
+## January 2024
+
+**General**
+
+| Article title | Description |
+|--|--|
+| - [Integrations overview](integrate-overview.md)
- [Data integrations overview](integrate-data-overview.md)
- [Query integrations overview](integrate-query-overview.md)
- [Visualize integrations overview](integrate-visualize-overview.md) | New articles. Describes the available data connectors, tools, and query integrations, and updated article on the available visualize integrations.|
+| [Schema optimization best practices](schema-best-practice.md)| New article. Describes the best practices for schema design in Azure Data Explorer.|
+
## December 2023
**General**
diff --git a/data-explorer/whats-new.md b/data-explorer/whats-new.md
index 1178c0bfb2..402ec81d54 100644
--- a/data-explorer/whats-new.md
+++ b/data-explorer/whats-new.md
@@ -9,6 +9,26 @@ ms.date: 01/14/2025
Welcome to what's new in Azure Data Explorer. This article details new and updated content in the Azure Data Explorer documentation.
+## January 2025
+
+**General**
+
+| Article title | Description |
+|--|--|
+| [Share dashboards](azure-data-explorer-dashboard-share.md) | New article. Describes how to share dashboards in Azure Data Explorer. |
+| [Customize settings in the Azure Data Explorer web UI](web-customize-settings.md) | Updated topic. Added how to enable cross-tenant dashboard sharing. |
+| [Troubleshoot: Failure to connect to a cluster in Azure Data Explorer](troubleshoot-connect-cluster.md) | Updated topic. Added instructions how to verify cluster is active. |
+| [Share queries from Azure Data Explorer web UI](web-share-queries.md) | Updated topic. Added information about shared queries opening in protected mode for enhanced security. |
+| [Manage public access to your Azure Data Explorer cluster](security-network-restrict-public-access.md) | Updated topic. Added section to manage access to your cluster by specifying selected IP addresses, CIDER notations, or servcice tags. |
+| [Visualize data with Azure Data Explorer dashboards](azure-data-explorer-dashboards.md) | Updated topic. Dashboard cross-tenant |
+
+**Query**
+
+| Article title | Description |
+|--|--|
+| [range operator](/azure/data-explorer/kusto/query/range-operator.md) | Updated topic. Added example of using the range operator to combine different stop times. |
+| [replace_string()](/azure/data-explorer/kusto/query/replace-string-function.md) | Updated topic. Added a simpler example that replaces words in a string. |
+
## December 2024
**Functions library**
@@ -221,11 +241,3 @@ No updates.
|--|--|
| [sort operator](/kusto/query/sort-operator?view=azure-data-explorer&preserve-view=true)| Updated article. Added section on the use of special floating-point values.|
-## January 2024
-
-**General**
-
-| Article title | Description |
-|--|--|
-| - [Integrations overview](integrate-overview.md)
- [Data integrations overview](integrate-data-overview.md)
- [Query integrations overview](integrate-query-overview.md)
- [Visualize integrations overview](integrate-visualize-overview.md) | New articles. Describes the available data connectors, tools, and query integrations, and updated article on the available visualize integrations.|
-| [Schema optimization best practices](schema-best-practice.md)| New article. Describes the best practices for schema design in Azure Data Explorer.|
From 1c6b6cc9714a95e89da0613416f12e78ea42c1fb Mon Sep 17 00:00:00 2001
From: ktalmor <193799742+ktalmor@users.noreply.github.com>
Date: Thu, 6 Feb 2025 10:52:40 +0200
Subject: [PATCH 07/12] Fixed links
---
data-explorer/whats-new.md | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/data-explorer/whats-new.md b/data-explorer/whats-new.md
index 402ec81d54..5f763c2ff0 100644
--- a/data-explorer/whats-new.md
+++ b/data-explorer/whats-new.md
@@ -26,8 +26,8 @@ Welcome to what's new in Azure Data Explorer. This article details new and updat
| Article title | Description |
|--|--|
-| [range operator](/azure/data-explorer/kusto/query/range-operator.md) | Updated topic. Added example of using the range operator to combine different stop times. |
-| [replace_string()](/azure/data-explorer/kusto/query/replace-string-function.md) | Updated topic. Added a simpler example that replaces words in a string. |
+| [range operator](/kusto/query/range-operator.md) | Updated topic. Added example of using the range operator to combine different stop times. |
+| [replace_string()](/kusto/query/replace-string-function.md) | Updated topic. Added a simpler example that replaces words in a string. |
## December 2024
@@ -240,4 +240,3 @@ No updates.
|Article title| Description|
|--|--|
| [sort operator](/kusto/query/sort-operator?view=azure-data-explorer&preserve-view=true)| Updated article. Added section on the use of special floating-point values.|
-
From c6a1cd32ed189f10c0bae50fe1b370997d40c833 Mon Sep 17 00:00:00 2001
From: Shlomo Sagir <51323195+shsagir@users.noreply.github.com>
Date: Thu, 6 Feb 2025 12:28:38 +0200
Subject: [PATCH 08/12] Update data-explorer/whats-new.md
---
data-explorer/whats-new.md | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/data-explorer/whats-new.md b/data-explorer/whats-new.md
index 5f763c2ff0..122f45dfa6 100644
--- a/data-explorer/whats-new.md
+++ b/data-explorer/whats-new.md
@@ -15,12 +15,12 @@ Welcome to what's new in Azure Data Explorer. This article details new and updat
| Article title | Description |
|--|--|
+| [Customize settings in the web UI](web-customize-settings.md) | Updated topic. Added how to enable cross-tenant dashboard sharing. |
+| [Share queries from web UI](web-share-queries.md) | Updated topic. Added information about shared queries opening in protected mode for enhanced security. |
+| [Troubleshoot: Failure to connect to a cluster](troubleshoot-connect-cluster.md) | Updated topic. Added instructions how to verify cluster is active. |
+| [Manage public access to your cluster](security-network-restrict-public-access.md) | Updated topic. Added section to manage access to your cluster by specifying selected IP addresses, CIDER notations, or servcice tags. |
+| [Visualize data with dashboards](azure-data-explorer-dashboards.md) | Updated topic. Dashboard cross-tenant |
| [Share dashboards](azure-data-explorer-dashboard-share.md) | New article. Describes how to share dashboards in Azure Data Explorer. |
-| [Customize settings in the Azure Data Explorer web UI](web-customize-settings.md) | Updated topic. Added how to enable cross-tenant dashboard sharing. |
-| [Troubleshoot: Failure to connect to a cluster in Azure Data Explorer](troubleshoot-connect-cluster.md) | Updated topic. Added instructions how to verify cluster is active. |
-| [Share queries from Azure Data Explorer web UI](web-share-queries.md) | Updated topic. Added information about shared queries opening in protected mode for enhanced security. |
-| [Manage public access to your Azure Data Explorer cluster](security-network-restrict-public-access.md) | Updated topic. Added section to manage access to your cluster by specifying selected IP addresses, CIDER notations, or servcice tags. |
-| [Visualize data with Azure Data Explorer dashboards](azure-data-explorer-dashboards.md) | Updated topic. Dashboard cross-tenant |
**Query**
From 36a732828b18f563e8646f22a1f2bcf2b326ea86 Mon Sep 17 00:00:00 2001
From: ktalmor <193799742+ktalmor@users.noreply.github.com>
Date: Thu, 6 Feb 2025 12:59:35 +0200
Subject: [PATCH 09/12] Update monikerRange and include notes in docs
---
data-explorer/kusto/query/sort-operator.md | 5 ++---
data-explorer/kusto/query/summarize-operator.md | 1 -
data-explorer/kusto/query/visualization-areachart.md | 1 -
data-explorer/kusto/query/visualization-barchart.md | 1 -
data-explorer/kusto/query/visualization-ladderchart.md | 2 +-
5 files changed, 3 insertions(+), 7 deletions(-)
diff --git a/data-explorer/kusto/query/sort-operator.md b/data-explorer/kusto/query/sort-operator.md
index 059d001c6c..b7b746f236 100644
--- a/data-explorer/kusto/query/sort-operator.md
+++ b/data-explorer/kusto/query/sort-operator.md
@@ -4,7 +4,6 @@ description: Learn how to use the sort operator to sort the rows of the input ta
ms.reviewer: alexans
ms.topic: reference
ms.date: 01/21/2025
-monikerRange: "microsoft-fabric || azure-data-explorer || azure-monitor || microsoft-sentinel "
---
# sort operator
@@ -49,10 +48,10 @@ When the input table contains the special values `null`, `NaN`, `-inf` and `+inf
## Example
-[!INCLUDE [help-cluster-note](../includes/help-cluster-note.md)]
-
The following example shows storm events by state in alphabetical order with the most recent storms in each state appearing first.
+[!INCLUDE [help-cluster-note](../includes/help-cluster-note.md)]
+
:::moniker range="azure-data-explorer"
> [!div class="nextstepaction"]
> Run the query
diff --git a/data-explorer/kusto/query/summarize-operator.md b/data-explorer/kusto/query/summarize-operator.md
index ce25a5584d..90257fcbc6 100644
--- a/data-explorer/kusto/query/summarize-operator.md
+++ b/data-explorer/kusto/query/summarize-operator.md
@@ -5,7 +5,6 @@ ms.reviewer: alexans
ms.topic: reference
ms.date: 01/21/2025
ms.localizationpriority: high
-monikerRange: "microsoft-fabric || azure-data-explorer || azure-monitor || microsoft-sentinel "
---
# summarize operator
diff --git a/data-explorer/kusto/query/visualization-areachart.md b/data-explorer/kusto/query/visualization-areachart.md
index 5f812ca150..9d98844c0d 100644
--- a/data-explorer/kusto/query/visualization-areachart.md
+++ b/data-explorer/kusto/query/visualization-areachart.md
@@ -4,7 +4,6 @@ description: This article describes the area chart visualization.
ms.reviewer: alexans
ms.topic: reference
ms.date: 01/28/2025
-monikerRange: "microsoft-fabric || azure-data-explorer || azure-monitor || microsoft-sentinel"
---
# Area chart
diff --git a/data-explorer/kusto/query/visualization-barchart.md b/data-explorer/kusto/query/visualization-barchart.md
index a428fe82f1..89b696959b 100644
--- a/data-explorer/kusto/query/visualization-barchart.md
+++ b/data-explorer/kusto/query/visualization-barchart.md
@@ -4,7 +4,6 @@ description: This article describes the bar chart visualization.
ms.reviewer: alexans
ms.topic: reference
ms.date: 01/28/2025
-monikerRange: "microsoft-fabric || azure-data-explorer || azure-monitor || microsoft-sentinel"
---
# Bar chart
diff --git a/data-explorer/kusto/query/visualization-ladderchart.md b/data-explorer/kusto/query/visualization-ladderchart.md
index 6b33c32908..f9ad535d6d 100644
--- a/data-explorer/kusto/query/visualization-ladderchart.md
+++ b/data-explorer/kusto/query/visualization-ladderchart.md
@@ -52,7 +52,7 @@ All properties are optional.
The example in this section shows how to use the syntax to help you get started.
-[!INCLUDE [help-cluster](../includes/help-cluster-note.md)]
+The examples in this article use publicly available tables in the help cluster, such as the *StormEvents* table in the Samples database.
### Dates of storms by state
From cd087febd66543f9df4d4f17b4ceaea0810bfd88 Mon Sep 17 00:00:00 2001
From: ktalmor <193799742+ktalmor@users.noreply.github.com>
Date: Thu, 6 Feb 2025 14:40:12 +0200
Subject: [PATCH 10/12] Small fix
---
data-explorer/whats-new.md | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/data-explorer/whats-new.md b/data-explorer/whats-new.md
index 122f45dfa6..8df232e034 100644
--- a/data-explorer/whats-new.md
+++ b/data-explorer/whats-new.md
@@ -19,7 +19,6 @@ Welcome to what's new in Azure Data Explorer. This article details new and updat
| [Share queries from web UI](web-share-queries.md) | Updated topic. Added information about shared queries opening in protected mode for enhanced security. |
| [Troubleshoot: Failure to connect to a cluster](troubleshoot-connect-cluster.md) | Updated topic. Added instructions how to verify cluster is active. |
| [Manage public access to your cluster](security-network-restrict-public-access.md) | Updated topic. Added section to manage access to your cluster by specifying selected IP addresses, CIDER notations, or servcice tags. |
-| [Visualize data with dashboards](azure-data-explorer-dashboards.md) | Updated topic. Dashboard cross-tenant |
| [Share dashboards](azure-data-explorer-dashboard-share.md) | New article. Describes how to share dashboards in Azure Data Explorer. |
**Query**
@@ -27,7 +26,7 @@ Welcome to what's new in Azure Data Explorer. This article details new and updat
| Article title | Description |
|--|--|
| [range operator](/kusto/query/range-operator.md) | Updated topic. Added example of using the range operator to combine different stop times. |
-| [replace_string()](/kusto/query/replace-string-function.md) | Updated topic. Added a simpler example that replaces words in a string. |
+| [replace_string() function](/kusto/query/replace-string-function.md) | Updated topic. Added a simpler example that replaces words in a string. |
## December 2024
From 5b9ee7ae25a6ceb5052c64b09eeb6f1c8a75d5af Mon Sep 17 00:00:00 2001
From: ktalmor <193799742+ktalmor@users.noreply.github.com>
Date: Thu, 6 Feb 2025 14:44:36 +0200
Subject: [PATCH 11/12] Fixed link paths
---
data-explorer/whats-new.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/data-explorer/whats-new.md b/data-explorer/whats-new.md
index 8df232e034..f670aad05d 100644
--- a/data-explorer/whats-new.md
+++ b/data-explorer/whats-new.md
@@ -25,8 +25,8 @@ Welcome to what's new in Azure Data Explorer. This article details new and updat
| Article title | Description |
|--|--|
-| [range operator](/kusto/query/range-operator.md) | Updated topic. Added example of using the range operator to combine different stop times. |
-| [replace_string() function](/kusto/query/replace-string-function.md) | Updated topic. Added a simpler example that replaces words in a string. |
+| [range operator](/kusto/query/range-operator?view=azure-data-explorer&preserve-view=true) | Updated topic. Added example of using the range operator to combine different stop times. |
+| [replace_string() function](/kusto/query/replace-string-function?view=azure-data-explorer&preserve-view=true) | Updated topic. Added a simpler example that replaces words in a string. |
## December 2024
From 01dcdfac2e7f5a7498aa9c70c855c03400253d80 Mon Sep 17 00:00:00 2001
From: Shlomo Sagir <51323195+shsagir@users.noreply.github.com>
Date: Thu, 6 Feb 2025 15:41:26 +0200
Subject: [PATCH 12/12] Update data-explorer/whats-new.md
---
data-explorer/whats-new.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/data-explorer/whats-new.md b/data-explorer/whats-new.md
index f670aad05d..59a72f6f45 100644
--- a/data-explorer/whats-new.md
+++ b/data-explorer/whats-new.md
@@ -16,10 +16,10 @@ Welcome to what's new in Azure Data Explorer. This article details new and updat
| Article title | Description |
|--|--|
| [Customize settings in the web UI](web-customize-settings.md) | Updated topic. Added how to enable cross-tenant dashboard sharing. |
-| [Share queries from web UI](web-share-queries.md) | Updated topic. Added information about shared queries opening in protected mode for enhanced security. |
-| [Troubleshoot: Failure to connect to a cluster](troubleshoot-connect-cluster.md) | Updated topic. Added instructions how to verify cluster is active. |
-| [Manage public access to your cluster](security-network-restrict-public-access.md) | Updated topic. Added section to manage access to your cluster by specifying selected IP addresses, CIDER notations, or servcice tags. |
| [Share dashboards](azure-data-explorer-dashboard-share.md) | New article. Describes how to share dashboards in Azure Data Explorer. |
+| [Share queries from web UI](web-share-queries.md) | Updated topic. Added information about shared queries opening in protected mode for enhanced security. |
+| [Troubleshoot: Failure to connect to a cluster](troubleshoot-connect-cluster.md) | Updated topic. Added instructions how to verify a cluster is active. |
+| [Manage public access to your cluster](security-network-restrict-public-access.md) | Updated topic. Added section to manage access to your cluster by specifying selected IP addresses, CIDER notations, or service tags. |
**Query**