Skip to content

Commit f910dc2

Browse files
committed
M3 tutorial updates
1 parent ba1a7b0 commit f910dc2

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed
19.2 KB
Loading
12.2 KB
Loading
14.9 KB
Loading

articles/iot-operations/end-to-end-tutorials/tutorial-add-assets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Browse to the [operations experience](https://iotoperations.azure.com) in your b
6363

6464
## Select your site
6565

66-
A _site_ is a collection of Azure IoT Operations instances. Sites typically group instances by physical location and make it easier for OT users to locate and manage assets. Your IT administrator creates [sites and assigns Azure IoT Operations instances to them](/azure/azure-arc/site-manager/overview). Because you're working with a new deployment, there are no sites yet. You can find the cluster you created in the previous tutorial by selecting **Unassigned instances**. In the operations experience, an instance represents a cluster where you deployed Azure IoT Operations.
66+
A _site_ is a collection of Azure IoT Operations instances. Sites typically group instances by physical location and make it easier for OT users to locate and manage assets. Your IT administrator creates [sites and assigns Azure IoT Operations instances to them](/azure/azure-arc/site-manager/overview). Because you're working with a new deployment, there are no sites yet. You can find the cluster you created in the previously by selecting **View unassigned instances**. In the operations experience, an instance represents a cluster where you deployed Azure IoT Operations.
6767

6868
:::image type="content" source="media/tutorial-add-assets/site-list.png" alt-text="Screenshot that shows the unassigned instances node in the operations experience.":::
6969

articles/iot-operations/end-to-end-tutorials/tutorial-get-insights.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ In this section, you create a KQL database in your Microsoft Fabric workspace to
9595
1. Run the following KQL query to create a data mapping for your table. The data mapping will be called *opcua_mapping*.
9696

9797
```kql
98-
.create table ['OPCUA'] ingestion json mapping 'opcua_mapping' '[{"column":"AssetId", "Properties":{"Path":"$[\'AssetId\']"}},{"column":"Temperature", "Properties":{"Path":"$.Temperature.Value"}},{"column":"Humidity", "Properties":{"Path":"$.Humidity.Value"}},{"column":"Timestamp", "Properties":{"Path":"$[\'EventProcessedUtcTime\']"}}]'
98+
.create table ['OPCUA'] ingestion json mapping 'opcua_mapping' '[{"column":"AssetId", "Properties":{"Path":"$[\'AssetId\']"}},{"column":"Temperature", "Properties":{"Path":"$[\'ThermostatTemperature\']"}},{"column":"Humidity", "Properties":{"Path":"$[\'ThermostatHumidity\']"}},{"column":"Timestamp", "Properties":{"Path":"$[\'EventProcessedUtcTime\']"}}]'
9999
```
100100
101101
### Add data table as a destination

articles/iot-operations/end-to-end-tutorials/tutorial-upload-telemetry-to-cloud.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,20 +125,20 @@ To create the dataflow:
125125

126126
1. In the dataflow editor, select **Select source**. Then select the thermostat asset you created previously and select **Apply**.
127127

128-
1. In the dataflow editor, select **Select dataflow endpoint**. Then select the **event-hubs-target**** endpoint you created previously and select **Apply**.
128+
1. In the dataflow editor, select **Select dataflow endpoint**. Then select the **event-hubs-target** endpoint you created previously and select **Apply**.
129129

130130
1. On the next page, enter *destinationeh* as the topic. The topic refers to the hub you created in the Event Hubs namespace. Select **Apply**. Your dataflow now has the thermostat asset as its source and a hub in your Event Hubs namespace as its destination.
131131

132132
1. To add a transformation, select **Add transform (optional)**.
133133

134134
1. To rename the `Tag 10` and `temperature` fields in the incoming message, select **+ Add** in the **Rename** tile.
135135

136-
1. Add the following two transforms:
136+
1. Add the following two rename transforms:
137137

138138
| Datapoint | New datapoint name |
139139
|-----------|--------------------|
140-
| "Tag 10" | Humidity |
141-
| temperature | Temperature |
140+
| Tag 10.Value | ThermostatHumidity |
141+
| temperature.Value | ThermostatTemperature |
142142

143143
The rename transformation looks like the following screenshot:
144144

0 commit comments

Comments
 (0)