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-live-data-visualization-in-power-bi.md
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ ms.author: sonialopez
8
8
ms.service: azure-iot-hub
9
9
ms.topic: tutorial
10
10
ms.tgt_pltfrm: arduino
11
-
ms.date: 04/14/2023
11
+
ms.date: 05/22/2025
12
12
---
13
13
14
14
# Tutorial: Visualize real-time sensor data from Azure IoT Hub using Power BI
@@ -17,7 +17,7 @@ You can use Microsoft Power BI to visualize real-time sensor data that your Azur
17
17
18
18
:::image type="content" source="./media/iot-hub-live-data-visualization-in-power-bi/end-to-end-diagram.png" alt-text="Diagram that shows the data flow from the device to Power BI." border="false":::
19
19
20
-
[Microsoft Power BI](https://powerbi.microsoft.com/) is a data visualization tool that you can use to perform self-service and enterprise business intelligence (BI) over large data sets. [Azure Stream Analytics](https://azure.microsoft.com/services/stream-analytics/#overview) is a fully managed, real-time analytics service designed to help you analyze and process fast moving streams of data that can be used to get insights, build reports or trigger alerts and actions.
20
+
[Microsoft Power BI](https://powerbi.microsoft.com/) is a data visualization tool that you can use to perform self-service and enterprise business intelligence (BI) over large data sets. [Azure Stream Analytics](https://azure.microsoft.com/services/stream-analytics/#overview) is a fully managed, real-time analytics service designed to help you analyze and process fast moving streams of data that can be used to get insights, build reports, or trigger alerts and actions.
21
21
22
22
In this tutorial, you perform the following tasks:
23
23
@@ -48,7 +48,7 @@ Create a Stream Analytics job. After you create the job, you define the inputs,
48
48
49
49
### Create a Stream Analytics job
50
50
51
-
Create a Stream Analytics job that you'll use to route data from IoT Hub to Power BI.
51
+
Create a Stream Analytics job that you use to route data from IoT Hub to Power BI.
52
52
53
53
1. In the [Azure portal](https://portal.azure.com), select **Create a resource**. Type *Stream Analytics Job* in the search box and select it from the drop-down list. On the **Stream Analytics job** overview page, select **Create**
54
54
@@ -75,11 +75,11 @@ Configure the Stream Analytics job to collect data from your IoT hub.
75
75
76
76
1. Open the Stream Analytics job.
77
77
78
-
2. Select **Inputs** from the **Job simulation** section of the navigation menu.
78
+
2. Select **Inputs** from the **Job topology** section of the navigation menu.
79
79
80
80
3. Select **Add input**, then select **IoT Hub** from the drop-down list.
81
81
82
-
:::image type="content" source="./media/iot-hub-live-data-visualization-in-power-bi/add-input-iot-hub.png" alt-text="Screenshot that shows selecting IoT Hub from the add input menu.":::
82
+
:::image type="content" source="./media/iot-hub-live-data-visualization-in-power-bi/add-input-iot-hub.png" alt-text="Screenshot that shows selecting IoT Hub from the Add input menu.":::
83
83
84
84
4. On the new input pane, enter the following information:
85
85
@@ -103,9 +103,9 @@ Configure the Stream Analytics job to collect data from your IoT hub.
103
103
104
104
2. Select **Add output**, and then select **Power BI** from the drop-down list.
105
105
106
-
:::image type="content" source="./media/iot-hub-live-data-visualization-in-power-bi/add-output-power-bi.png" alt-text="Screenshot that shows selecting Power BI from the add output menu.":::
106
+
:::image type="content" source="./media/iot-hub-live-data-visualization-in-power-bi/add-output-power-bi.png" alt-text="Screenshot that shows selecting Power BI from the Add output menu.":::
107
107
108
-
3. After you've signed in to Power BI, enter the following information to create a Power BI output:
108
+
3. After you sign in to Power BI, enter the following information to create a Power BI output:
109
109
110
110
| Parameter | Value |
111
111
| --------- | ----- |
@@ -121,13 +121,13 @@ Configure the Stream Analytics job to collect data from your IoT hub.
121
121
122
122
### Configure the query of the Stream Analytics job
123
123
124
-
1. Select **Query** from the **Job simulation** section of the navigation menu.
124
+
1. Select **Query** from the **Job topology** section of the navigation menu.
125
125
126
126
2. In the query editor, replace `[YourOutputAlias]` with the output alias of the job.
127
127
128
128
3. Replace `[YourInputAlias]` with the input alias of the job.
129
129
130
-
4. Add the following `WHERE` clause as the last line of the query. This line ensures that only messages with a **temperature** property will be forwarded to Power BI.
130
+
4. Add the following `WHERE` clause as the last line of the query. This line ensures that only messages with a **temperature** property are forwarded to Power BI.
131
131
132
132
```sql
133
133
WHERE temperature IS NOT NULL
@@ -140,7 +140,7 @@ Configure the Stream Analytics job to collect data from your IoT hub.
140
140
### Run the Stream Analytics job
141
141
142
142
1. In the Stream Analytics job, select **Overview**.
143
-
1. Select **Start** > **Now** > **Start**. Once the job successfully starts, the job status changes from **Stopped** to **Running**.
143
+
1. Select **Start job** > **Now** > **Start**. Once the job successfully starts, the job status changes from **Stopped** to **Running**.
144
144
145
145
## Create and publish a Power BI report to visualize the data
146
146
@@ -173,14 +173,14 @@ The following steps show you how to create and publish a report using the Power
173
173
:::image type="content" source="./media/iot-hub-live-data-visualization-in-power-bi/power-bi-add-temperature.png" alt-text="Add a line chart for temperature to a Microsoft Power BI report":::
174
174
175
175
> [!NOTE]
176
-
> Depending on the device or simulated device that you use to send telemetry data, you may have a slightly different list of fields.
176
+
> Depending on the device or simulated device that you use to send telemetry data, you might have a slightly different list of fields.
177
177
178
178
7. Select **File** > **Save** to save the report. When prompted, enter a name for your report.
179
179
180
180
8. Still on the report pane, select **File** > **Embed report** > **Website or portal**.
181
181
182
182
> [!NOTE]
183
-
> If you get a notification to contact your administrator to enable embed code creation, you may need to contact them. Embed code creation must be enabled before you can complete this step.
183
+
> If you get a notification to contact your administrator to enable embed code creation, you might need to contact them. Embed code creation must be enabled before you can complete this step.
184
184
>
185
185
> :::image type="content" source="./media/iot-hub-live-data-visualization-in-power-bi/contact-admin.png" alt-text="Screenshot that shows the Contact your administrator notification.":::
186
186
@@ -194,7 +194,7 @@ Microsoft also offers the [Power BI mobile apps](https://powerbi.microsoft.com/d
194
194
195
195
In this tutorial, you created a Stream Analytics job and a dataset in Power BI.
196
196
197
-
If you plan to complete other tutorials, you may want to keep the resource group and IoT hub, so you can reuse them later.
197
+
If you plan to complete other tutorials, you might want to keep the resource group and IoT hub, so you can reuse them later.
Copy file name to clipboardExpand all lines: includes/iot-hub-get-started-create-consumer-group.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,18 +3,18 @@ author: SoniaLopezBravo
3
3
4
4
ms.author: sonialopez
5
5
ms.topic: include
6
-
ms.date: 07/07/2021
6
+
ms.date: 05/22/2025
7
7
---
8
8
## Add a consumer group to your IoT hub
9
9
10
-
[Consumer groups](../articles/event-hubs/event-hubs-features.md#event-consumers) provide independent views into the event stream that enable apps and Azure services to independently consume data from the same Event Hub endpoint. In this section, you add a consumer group to your IoT hub's built-in endpoint that is used later in this tutorial to pull data from the endpoint.
10
+
[Consumer groups](../articles/event-hubs/event-hubs-features.md#event-consumers) provide independent views into the event stream that enable apps and Azure services to independently consume data from the same Event Hubs endpoint. In this section, you add a consumer group to your IoT hub's built-in endpoint that is used later in this tutorial to pull data from the endpoint.
11
11
12
12
To add a consumer group to your IoT hub, follow these steps:
13
13
14
14
1. In the [Azure portal](https://portal.azure.com/), open your IoT hub.
15
15
16
-
1. On the left pane, select **Built-in endpoints**. Enter a name for your new consumer group in the text box under **Consumer groups**.
16
+
1. On the left pane, select **Built-in endpoints** under **Hub settings**. Enter a name for your new consumer group in the text box under **Consumer Groups**.
17
17
18
18
:::image type="content" source="./media/iot-hub-get-started-create-consumer-group/iot-hub-create-consumer-group-azure.png" alt-text="Screenshot showing how to create a consumer group in your IoT hub." border="true":::
19
19
20
-
1.Click anywhere outside the text box to save the consumer group.
20
+
1.Select anywhere outside the text box to save the consumer group.
0 commit comments