Skip to content

Commit 0b34219

Browse files
authored
Merge pull request #282250 from baanders/release-aio-july-updates
Quickstart 4: Edit data queries
2 parents b59d4a4 + 5efff0f commit 0b34219

File tree

5 files changed

+1
-2
lines changed

5 files changed

+1
-2
lines changed
-4.92 KB
Loading
39.2 KB
Loading
-9.44 KB
Loading
-157 KB
Loading

articles/iot-operations/get-started-end-to-end-sample/quickstart-get-insights.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ In this section, you create a KQL database in your Microsoft Fabric workspace to
8484

8585
| Column name | Data type |
8686
| --- | --- |
87-
| SequenceNumber | int |
8887
| assetName | string |
8988
| Temperature | decimal |
9089
| Pressure | decimal |
@@ -97,7 +96,7 @@ In this section, you create a KQL database in your Microsoft Fabric workspace to
9796
1. Run the following KQL query to create a data mapping for your table. The data mapping will be called *opcua_mapping*.
9897

9998
```kql
100-
.create table ['OPCUA'] ingestion json mapping 'opcua_mapping' '[{"column":"SequenceNumber", "Properties":{"Path":"$[\'SequenceNumber\']"}},{"column":"assetName", "Properties":{"Path":"$[\'DataSetWriterName\']"}},{"column":"Temperature", "Properties":{"Path":"$.Payload.temperature.Value"}},{"column":"Pressure", "Properties":{"Path":"$.Payload.[\'Tag 10\'].Value"}},{"column":"Timestamp", "Properties":{"Path":"$[\'Timestamp\']"}}]'
99+
.create table ['OPCUA'] ingestion json mapping 'opcua_mapping' '[{"column":"Temperature", "Properties":{"Path":"$.temperature.Value"}},{"column":"Pressure", "Properties":{"Path":"$.[\'Tag 10\'].Value"}},{"column":"Timestamp", "Properties":{"Path":"$[\'EventProcessedUtcTime\']"}}]'
101100
```
102101
103102
### Add data table as a destination

0 commit comments

Comments
 (0)