Skip to content

Commit df36826

Browse files
Merge pull request #218600 from msjasteppe/iot-updates
Minor updates.
2 parents 6216ab1 + 9117606 commit df36826

File tree

3 files changed

+70
-28
lines changed

3 files changed

+70
-28
lines changed

articles/healthcare-apis/iot/device-data-through-iot-hub.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,20 @@ author: msjasteppe
66
ms.service: healthcare-apis
77
ms.subservice: iomt
88
ms.topic: tutorial
9-
ms.date: 11/14/2022
9+
ms.date: 11/16/2022
1010
ms.author: jasteppe
1111
---
1212

1313
# Tutorial: Receive device data through Azure IoT Hub
1414

15-
The MedTech service may be used with devices created and managed through an [Azure IoT Hub](../../iot-hub/iot-concepts-and-iot-hub.md) for enhanced workflows and ease of use. This tutorial uses an Azure Resource Manager (ARM) template and a **Deploy to Azure** button to deploy and configure a MedTech service using an Azure IoT Hub for device creation, management, and routing of device messages to the device message event hub. The ARM template used in this article is available from the [Azure Quickstart Templates](https://azure.microsoft.com/resources/templates/?resourceType=Microsoft.Healthcareapis) site using the **azuredeploy.json** file located on [GitHub](https://github.com/Azure/azure-quickstart-templates/blob/master/quickstarts/microsoft.healthcareapis/workspaces/iotconnectors-with-iothub/azuredeploy.json).
15+
The MedTech service may be used with devices created and managed through an [Azure IoT Hub](../../iot-hub/iot-concepts-and-iot-hub.md) for enhanced workflows and ease of use. This tutorial uses an Azure Resource Manager (ARM) template and a **Deploy to Azure** button to deploy a MedTech service using an Azure IoT Hub for device creation, management, and routing of device messages to the MedTech service device message event hub. The ARM template used in this article is available from the [Azure Quickstart Templates](/azure/azure-quickstart-templates/iotconnectors-with-iothub/) site using the **azuredeploy.json** file located on [GitHub](https://github.com/azure/azure-quickstart-templates/tree/master/quickstarts/microsoft.healthcareapis/workspaces/iotconnectors-with-iothub).
1616

1717
> [!TIP]
18+
> For more information about using Azure PowerShell and CLI to deploy MedTech service ARM templates, see [Using Azure PowerShell and Azure CLI to deploy the MedTech service with Azure Resource Manager templates](deploy-08-new-ps-cli.md).
19+
>
1820
> For more information about ARM templates, see [What are ARM templates?](../../azure-resource-manager/templates/overview.md)
1921
20-
Below is a diagram of the IoT device message flow when using an IoT Hub with the MedTech service. As you can see, devices send their messages to the IoT Hub, which then routes the device messages to the device message event hub to be picked up by the MedTech service. The MedTech service will then transform the device messages and persist them into the Fast Healthcare Interoperability Resources (FHIR®) service as FHIR Observations. To learn more about the MedTech service data flow, see [MedTech service data flow](iot-data-flow.md)
22+
Below is a diagram of the IoT device message flow when using an IoT Hub with the MedTech service. As you can see, devices send their messages to the IoT Hub, which then routes the device messages to the device message event hub to be picked up by the MedTech service. The MedTech service will then transform the device messages and persist them into the Fast Healthcare Interoperability Resources (FHIR®) service as FHIR Observations. To learn more about the MedTech service data flow, see [MedTech service data flow](iot-data-flow.md).
2123

2224
:::image type="content" source="media\iot-hub-to-iot-connector\iot-hub-to-iot-connector.png" alt-text="Diagram of IoT message data flow through IoT Hub into the MedTech service." lightbox="media\iot-hub-to-iot-connector\iot-hub-to-iot-connector.png":::
2325

@@ -66,7 +68,7 @@ When you've fulfilled these prerequisites, you're ready to use the **Deploy to A
6668
> [!IMPORTANT]
6769
> For this tutorial, the ARM template will configure the MedTech service to operate in **Create** mode so that a Patient Resource and Device Resource are created for each device that sends data to your FHIR service.
6870
>
69-
> To learn more about the MedTech service resolution types: **Create** and **Lookup**, see: [Destination properties](./deploy-05-new-config.md#destination-properties)
71+
> To learn more about the MedTech service resolution types: **Create** and **Lookup**, see: [Destination properties](deploy-05-new-config.md#destination-properties).
7072
7173
3. Select the **Review + create** button after all the option fields are correctly filled out. This selection will review your option inputs and check to see if all your supplied values are valid.
7274

@@ -88,11 +90,11 @@ When you've fulfilled these prerequisites, you're ready to use the **Deploy to A
8890

8991
Once the deployment has competed, the following resources and access roles will be created as part of the template deployment:
9092

91-
- An Azure Event Hubs Namespace and device message Azure event hub. In this example, the event hub is named **devicedata**.
93+
- An Azure Event Hubs Namespace and device message Azure event hub. In this deployment, the event hub is named **devicedata**.
9294

93-
- An Azure event hub consumer group. In this example, the consumer group is named **$Default**.
95+
- An Azure event hub consumer group. In this deployment, the consumer group is named **$Default**.
9496

95-
- An Azure event hub sender role. In this example, the sender role is named **devicedatasender**.
97+
- An Azure event hub sender role. In this deployment, the sender role is named **devicedatasender**. For the purposes of this tutorial, this role won't be used. To learn more about the role and its use, see [Review of deployed resources and access permissions](deploy-02-new-button.md#required-post-deployment-tasks).
9698

9799
- An Azure IoT Hub with [messaging routing](../../iot-hub/iot-hub-devguide-messages-d2c.md) configured to send device messages to the device message event hub.
98100

@@ -195,7 +197,7 @@ Use this tutorial: [Access using Postman](../fhir/use-postman.md) to get an Azur
195197

196198
## Next steps
197199

198-
In this tutorial, you deployed a Quickstart ARM template in the Azure portal, connected to your Azure IoT Hub, created a device, and sent a test message to your MedTech service.
200+
In this tutorial, you deployed an ARM template in the Azure portal, connected to your Azure IoT Hub, created a device, and sent a test message to your MedTech service.
199201

200202
To learn about how to use device mappings, see
201203

articles/healthcare-apis/iot/index.yml

Lines changed: 56 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -13,35 +13,75 @@ metadata:
1313
ms.collection: collection
1414
author: msjasteppe
1515
ms.author: jasteppe
16-
ms.date: 07/05/2022
16+
ms.date: 11/15/2022
1717

1818
# linkListType: architecture | concept | deploy | download | get-started | how-to-guide | learn | overview | quickstart | reference | tutorial | video | whats-new
1919

2020
landingContent:
2121

22-
- title: Deploy the MedTech service
22+
- title: About MedTech service
2323
linkLists:
24-
- linkListType: get-started
24+
- linkListType: overview
2525
links:
26-
- text: Deploy the MedTech service using the Azure portal
26+
- text: What is MedTech service?
27+
url: iot-connector-overview.md
28+
- text: MedTech service data flow
29+
url: iot-data-flow.md
30+
- linkListType: quickstart
31+
links:
32+
- text: Get started with the MedTech service
33+
url: get-started-with-iot.md
34+
35+
- title: Deploy MedTech service
36+
linkLists:
37+
- linkListType: overview
38+
links:
39+
- text: Choose a deployment method
2740
url: deploy-iot-connector-in-azure.md
28-
29-
- title: Using the MedTech service
41+
- linkListType: quickstart
42+
links:
43+
- text: Azure Resource Manager (ARM) template
44+
url: deploy-02-new-button.md
45+
- text: Azure PowerShell and CLI
46+
url: deploy-08-new-ps-cli.md
47+
- text: Azure portal
48+
url: deploy-03-new-manual.md
49+
50+
- title: MedTech service with Azure IoT Hub
3051
linkLists:
31-
- linkListType: concept
52+
- linkListType: tutorial
53+
links:
54+
- text: Receive device data through Azure IoT Hub
55+
url: device-data-through-iot-hub.md
56+
57+
- title: Configure MedTech service mappings
58+
linkLists:
59+
- linkListType: how-to-guide
3260
links:
33-
- text: MedTech service data flow
34-
url: iot-data-flow.md
3561
- text: Device mappings
3662
url: how-to-use-device-mappings.md
3763
- text: FHIR destination mappings
3864
url: how-to-use-fhir-mappings.md
39-
- text: IoMT Connector Data Mapper tool
40-
url: https://github.com/microsoft/iomt-fhir/tree/master/tools/data-mapper
41-
42-
- title: Azure IoT Hub
65+
66+
- title: Monitor MedTech service
4367
linkLists:
44-
- linkListType: tutorial
68+
- linkListType: how-to-guide
4569
links:
46-
- text: Receive device data through Azure IoT Hub
47-
url: device-data-through-iot-hub.md
70+
- text: Display monitoring tab metrics
71+
url: how-to-use-monitoring-tab.md
72+
- text: Configure metrics
73+
url: how-to-configure-metrics.md
74+
- text: Enable diagnostic settings
75+
url: how-to-enable-diagnostic-settings.md
76+
77+
- title: Integrate with MedTech service
78+
linkLists:
79+
- linkListType: concept
80+
links:
81+
- text: MedTech service and Azure Machine Learning Service
82+
url: iot-connector-machine-learning.md
83+
- text: MedTech service and Microsoft Power BI
84+
url: iot-connector-power-bi.md
85+
- text: MedTech service and Microsoft Teams notifications
86+
url: iot-connector-teams.md
87+

articles/healthcare-apis/iot/toc.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,22 @@ items:
66
items:
77
- name: What is MedTech service?
88
href: iot-connector-overview.md
9+
- name: MedTech service data flow
10+
href: iot-data-flow.md
911
- name: Quickstarts
1012
expanded: true
1113
items:
1214
- name: Get started with MedTech service
1315
href: get-started-with-iot.md
14-
- name: Deploy the MedTech service
16+
- name: Deploy MedTech service
1517
expanded: true
1618
items:
1719
- name: Deployment methods
1820
expanded: true
1921
items:
2022
- name: Choose a deployment method
2123
href: deploy-iot-connector-in-azure.md
22-
- name: Quickstart template
24+
- name: Azure Resource Manager (ARM) template
2325
href: deploy-02-new-button.md
2426
- name: Azure PowerShell and CLI
2527
href: deploy-08-new-ps-cli.md
@@ -77,8 +79,6 @@ items:
7779
- name: Concepts
7880
expanded: false
7981
items:
80-
- name: MedTech service data flow
81-
href: iot-data-flow.md
8282
- name: MedTech service and Azure Machine Learning Service
8383
href: iot-connector-machine-learning.md
8484
- name: MedTech service and Microsoft Power BI

0 commit comments

Comments
 (0)