Skip to content

Commit ca457b0

Browse files
Merge pull request #287246 from dominicbetts/release-aio-m2-qs-updates
AIO: quickstarts updates
2 parents 3c64515 + 0b3fc24 commit ca457b0

File tree

6 files changed

+19
-10
lines changed

6 files changed

+19
-10
lines changed
-260 KB
Loading
Loading
Loading

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

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,6 @@ To add an asset endpoint:
9999
kubectl get assetendpointprofile -n azure-iot-operations
100100
```
101101

102-
1. In the current release, you need to patch the asset endpoint by using the following command:
103-
104-
```console
105-
kubectl patch AssetEndpointProfile opc-ua-connector-0 -n azure-iot-operations --type=merge -p '{"spec":{"additionalConfiguration":"{}"}}'
106-
```
107-
108102
## Manage your assets
109103

110104
After you select your instance in operations experience, you see the available list of assets on the **Assets** page. If there are no assets yet, this list is empty:

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,9 @@ In this section, you create a KQL database in your Microsoft Fabric workspace to
8686

8787
| Column name | Data type |
8888
| --- | --- |
89-
| Temperature | decimal |
90-
| Humidity | decimal |
89+
| AssetId | string |
90+
| Temperature | decimal |
91+
| Humidity | decimal |
9192
| Timestamp | datetime |
9293

9394
1. After the *OPCUA* table has been created, select it and use the **Explore your data** button to open a query window for the table.
@@ -97,7 +98,7 @@ In this section, you create a KQL database in your Microsoft Fabric workspace to
9798
1. Run the following KQL query to create a data mapping for your table. The data mapping will be called *opcua_mapping*.
9899

99100
```kql
100-
.create table ['OPCUA'] ingestion json mapping 'opcua_mapping' '[{"column":"Temperature", "Properties":{"Path":"$.Temperature.Value"}},{"column":"Humidity", "Properties":{"Path":"$.Humidity.Value"}},{"column":"Timestamp", "Properties":{"Path":"$[\'EventProcessedUtcTime\']"}}]'
101+
.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\']"}}]'
101102
```
102103
103104
### Add data table as a destination

articles/iot-operations/get-started-end-to-end-sample/quickstart-upload-telemetry-to-cloud.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,23 @@ Invoke-WebRequest -Uri https://raw.githubusercontent.com/Azure-Samples/explore-i
131131
kubectl apply -f dataflow.yaml
132132
```
133133

134-
135134
---
136135

136+
## Verify data is flowing
137+
138+
To verify that data is flowing to the cloud, you can view your Event Hubs instance in the Azure portal.
139+
140+
If messages are flowing to the instance, you can see the count on incoming messages on the instance **Overview** page:
141+
142+
:::image type="content" source="media/quickstart-upload-telemetry-to-cloud/incoming-messages.png" alt-text="Screenshot that shows the Event Hubs instance overview page with incoming messages.":::
143+
144+
If messages are flowing, you can use the **Data Explorer** to view the messages:
145+
146+
:::image type="content" source="media/quickstart-upload-telemetry-to-cloud/event-hubs-data-viewer.png" alt-text="Screenshot of the Event Hubs instance **Data Explorer** page.":::
147+
148+
> [!TIP]
149+
> You may need to assign yourself to the **Azure Event Hubs Data Receiver** role for the Event Hubs namespace to view the messages.
150+
137151
## How did we solve the problem?
138152

139153
In this quickstart, you used a dataflow to connect an MQTT topic to an event hub in your Azure Event Hubs namespace. In the next quickstart, you use Microsoft Fabric Real-Time Intelligence to visualize the data.

0 commit comments

Comments
 (0)