You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/iot-hub/iot-hub-monitoring-notifications-with-azure-logic-apps.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,24 +1,24 @@
1
1
---
2
-
title: IoT monitoring and notifications with Azure Logic Apps
3
-
titleSuffix: Azure IoT Hub
2
+
title: IoT remote monitoring and notifications with Azure Logic App
4
3
description: Use Azure Logic Apps for IoT temperature monitoring on your IoT hub and automatically send email notifications to your mailbox for any anomalies detected.
5
4
author: kgremban
6
5
7
6
ms.author: kgremban
8
7
ms.service: iot-hub
9
-
ms.topic: how-to
8
+
ms.topic: tutorial
10
9
ms.date: 07/18/2019
10
+
#I think this is out of date. I changed 'click' to select. --RobinShahan
11
11
---
12
12
13
13
# IoT remote monitoring and notifications with Azure Logic Apps connecting your IoT hub and mailbox
[Azure Logic Apps](../logic-apps/index.yml) can help you orchestrate workflows across on-premises and cloud services, multiple enterprises, and various protocols. A logic app begins with a trigger, which is then followed by actions that are sequenced using controls like conditions and iterators. This flexibility makes Logic Apps an ideal solution for IoT monitoring scenarios. For example, the arrival of telemetry data from a device at an IoT Hub endpoint can initiate logic app workflows to store the data in an Azure Storage blob, send email alerts to warn of data anomalies, schedule a technician visit if a device reports a failure, and so on.
17
+
[Azure Logic Apps](../logic-apps/index.yml) can help you orchestrate workflows across on-premises and cloud services, one or more enterprises, and across various protocols. A logic app begins with a trigger, which is then followed by one or more actions that can be sequenced using built-in controls, such as conditions and iterators. This flexibility makes Logic Apps an ideal IoT solution for IoT monitoring scenarios. For example, the arrival of telemetry data from a device at an IoT Hub endpoint can initiate logic app workflows to warehouse the data in an Azure Storage blob, send email alerts to warn of data anomalies, schedule a technician visit if a device reports a failure, and so on.
18
18
19
-
In this article, you learn how to create a logic app that connects to your IoT hub for temperature monitoring and notifications. The client code running on your device sets an application property, `temperatureAlert`, on every telemetry message it sends to your IoT hub. When the client code detects a temperature above 30 C, it sets this alert property to `true`; otherwise, it sets the property to `false`.
19
+
In this article, you learn how to create a logic app that connects your IoT hub and your mailbox for temperature monitoring and notifications. The client code running on your device sets an application property, `temperatureAlert`, on every telemetry message it sends to your IoT hub. When the client code detects a temperature above 30 C, it sets this property to `true`; otherwise, it sets the property to `false`.
20
20
21
-
Messages arriving at your IoT hub look similar to the following example, with the telemetry data contained in the body and the `temperatureAlert` property contained in the application properties (system properties aren't shown):
21
+
Messages arriving at your IoT hub look similar to the following, with the telemetry data contained in the body and the `temperatureAlert` property contained in the application properties (system properties aren't shown):
22
22
23
23
```json
24
24
{
@@ -40,7 +40,7 @@ In this article, you set up routing on your IoT hub to send messages in which th
40
40
41
41
## Prerequisites
42
42
43
-
*An IoT device connected to your IoT hub. You can use the [Raspberry Pi online simulator](iot-hub-raspberry-pi-web-simulator-get-started.md) tutorial or one of the device tutorials. For example, you can go to [Raspberry Pi with Node.js](iot-hub-raspberry-pi-kit-node-get-started.md) or to one of the [Send telemetry](../iot-develop/quickstart-send-telemetry-iot-hub.md?pivots=programming-language-csharp) quickstarts. These articles cover the following requirements:
43
+
*Complete the [Raspberry Pi online simulator](iot-hub-raspberry-pi-web-simulator-get-started.md) tutorial or one of the device tutorials. For example, you can go to [Raspberry Pi with Node.js](iot-hub-raspberry-pi-kit-node-get-started.md) or to one of the [Send telemetry](../iot-develop/quickstart-send-telemetry-iot-hub.md?pivots=programming-language-csharp) quickstarts. These articles cover the following requirements:
0 commit comments