Skip to content

Commit 1fd360a

Browse files
committed
Fix formatting and typo
1 parent 667bef7 commit 1fd360a

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

articles/data-explorer/ingest-data-event-hub.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Now you connect to the event hub from Azure Data Explorer. When this connection
106106
107107
![Event hub connection](media/ingest-data-event-hub/event-hub-connection.png)
108108
109-
Data Source:
109+
**Data Source:**
110110
111111
**Setting** | **Suggested value** | **Field description**
112112
|---|---|---|
@@ -117,7 +117,7 @@ Now you connect to the event hub from Azure Data Explorer. When this connection
117117
| Event system properties | Select relevant properties | The [Event Hub system properties](/azure/service-bus-messaging/service-bus-amqp-protocol-guide#message-annotations). If there are multiple records per event message, the system properties will be added to the first one. When adding system properties, [create](/azure/kusto/management/tables#create-table) or [update](/azure/kusto/management/tables#alter-table-and-alter-merge-table) table schema and [mapping](/azure/kusto/management/mappings) to include the selected properties. |
118118
| | |
119119
120-
Target table:
120+
**Target table:**
121121
122122
There are two options for routing the ingested data: *static* and *dynamic*.
123123
For this article, you use static routing, where you specify the table name, data format, and mapping. Therefore, leave **My data includes routing info** unselected.

includes/data-explorer-container-system-properties.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ ms.date: 01/08/2020
66
ms.author: orspodek
77
---
88

9-
1. If you selected Event system properties in the **Data Source** section of the table above, go to the [Web UI](https://dataexplorer.azure.com/) to run the relevant KQL command for proper mapping creation.
9+
### Event system properties mapping
1010

11-
For csv mapping:
11+
If you selected **Event system properties** in the **Data Source** section of the table above, go to the [Web UI](https://dataexplorer.azure.com/) to run the relevant KQL command for proper mapping creation.
12+
13+
**For csv mapping:**
1214

1315
```kusto
1416
.create table MyTable ingestion csv mapping "CsvMapping1"
@@ -19,7 +21,7 @@ ms.author: orspodek
1921
']'
2022
```
2123

22-
For json mapping:
24+
**For json mapping:**
2325

2426
```kusto
2527
.create table MyTable ingestion json mapping "JsonMapping1"
@@ -30,6 +32,6 @@ ms.author: orspodek
3032
']'
3133
```
3234

33-
> [!TIP]
34-
> * You must include all delected properties in the mapping.
35-
> * The properties order is important in csv mapping. The system properties must be listed before all other properties and in the same order in which they appear on the list.
35+
> [!TIP]
36+
> * You must include all selected properties in the mapping.
37+
> * The properties order is important in csv mapping. The system properties must be listed before all other properties and in the same order in which they appear in the **Event system properties** dropdown.

0 commit comments

Comments
 (0)