Skip to content

Commit 367d480

Browse files
authored
Merge pull request #49428 from dominicbetts/accelerators-ds-tsi
Device simulation solution accelerator TSI how-to
2 parents 262a461 + 73ccbc8 commit 367d480

File tree

44 files changed

+281
-145
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+281
-145
lines changed

.openpublishing.redirection.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26094,7 +26094,12 @@
2609426094
},
2609526095
{
2609626096
"source_path": "articles/iot-suite/iot-suite-time-series-insights.md",
26097-
"redirect_url": "/azure/iot-accelerators/iot-accelerators-time-series-insights",
26097+
"redirect_url": "/azure/iot-accelerators/iot-accelerators-remote-monitoring-time-series-insights",
26098+
"redirect_document_id": false
26099+
},
26100+
{
26101+
"source_path": "articles/iot-suite/iot-accelerators-time-series-insights.md",
26102+
"redirect_url": "/azure/iot-accelerators/iot-accelerators-remote-monitoring-time-series-insights",
2609826103
"redirect_document_id": false
2609926104
},
2610026105
{
Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
---
2+
title: Visualize device simulation telemetry with Azure Time Series Insights | Microsoft Docs
3+
description: Learn how to configure your Time Series Insights environment to explore and analyze telemetry generated by the Device Simulation solution accelerator.
4+
author: dominicbetts
5+
manager: timlt
6+
ms.author: dobett
7+
ms.date: 08/20/2018
8+
ms.topic: conceptual
9+
ms.service: iot-accelerators
10+
services: iot-accelerators
11+
---
12+
13+
# Use Time Series Insights to visualize telemetry sent from the Device Simulation solution accelerator
14+
15+
The Device Simulation solution accelerator lets you generate telemetry from simulated devices to test your IoT solutions. This how-to guide shows you how to visualize and analyze the simulated telemetry using a Time Series Insights environment.
16+
17+
## Prerequisites
18+
19+
To follow the steps in this how-to guide, you need an active Azure subscription. If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
20+
21+
The steps in this how-to guide assume you've deployed the Device Simulation solution accelerator to your Azure subscription. If you haven't deployed the solution accelerator, follow the steps in the [Deploy and run a cloud-based device simulation solution](quickstart-device-simulation-deploy.md) quickstart.
22+
23+
This article assumes the name of your solution accelerator is **contoso-simulation**. Replace **contoso-simulation** with the name of your solution accelerator as you complete the following steps.
24+
25+
[!INCLUDE [cloud-shell-try-it.md](../../includes/cloud-shell-try-it.md)]
26+
27+
[!INCLUDE [iot-accelerators-create-tsi.md](../../includes/iot-accelerators-create-tsi.md)]
28+
29+
## Start a simulation
30+
31+
Before you use Time Series Insights explorer, configure the Device Simulation solution accelerator to generate some telemetry. The following screenshot, shows a running simulation with 10 chiller devices:
32+
33+
![Running device simulation](./media/iot-accelerators-device-simulation-time-series-insights/running-simulation.png)
34+
35+
## Time Series Insights explorer
36+
37+
The Time Series Insights explorer is a web app you can use to visualize your telemetry.
38+
39+
1. In the Azure portal, select the Time Series Insights **Overview** tab.
40+
41+
1. To open the Time Series Insights explorer web app, click **Go to Environment**:
42+
43+
![Time Series Insights explorer](./media/iot-accelerators-device-simulation-time-series-insights/time-series-insights-environment.png)
44+
45+
1. In the time selection panel, select **Last 30 minutes** from the quick times menu and click **Search**:
46+
47+
![Time Series Insights explorer search](./media/iot-accelerators-device-simulation-time-series-insights/time-series-insights-search-time.png)
48+
49+
1. In the terms panel on the left, select **temperature** as the **Measure** and **iothub-connection-device-id** as the **Split By** value:
50+
51+
![Time Series Insights explorer query](./media/iot-accelerators-device-simulation-time-series-insights/time-series-insights-query1.png)
52+
53+
1. Right-click on the chart and select **Explore events**:
54+
55+
![Time Series Insights explorer events](./media/iot-accelerators-device-simulation-time-series-insights/time-series-insights-explore-events.png)
56+
57+
1. The event data shows in a grid:
58+
59+
![Time Series Insights explorer table](./media/iot-accelerators-device-simulation-time-series-insights/time-series-insights-table.png)
60+
61+
1. Click the perspective view button:
62+
63+
![Time Series Insights explorer perspective](./media/iot-accelerators-device-simulation-time-series-insights/time-series-insights-explorer-perspective.png)
64+
65+
1. Click **+** to add a new query to the perspective:
66+
67+
![Time Series Insights explorer Add Query](./media/iot-accelerators-device-simulation-time-series-insights/time-series-insights-new-query.png)
68+
69+
1. Select **Last 30 minutes** as the time span, **Humidity** as the **Measure**, and **iothub-connection-device-id** as the **Split By** value:
70+
71+
![Time Series Insights explorer query](./media/iot-accelerators-device-simulation-time-series-insights/time-series-insights-query2.png)
72+
73+
1. Click the perspective view button to view your device telemetry dashboard:
74+
75+
![Time Series Insights explorer dashboard](./media/iot-accelerators-device-simulation-time-series-insights/time-series-insights-dashboard.png)
76+
77+
[!INCLUDE [iot-accelerators-cleanup-tsi.md](../../includes/iot-accelerators-cleanup-tsi.md)]
78+
79+
## Next Steps
80+
81+
To learn more about how to explore and query data in the Time Series Insights explorer, see [Azure Time Series Insights explorer](../time-series-insights/time-series-insights-explorer.md).
Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
---
2+
title: Visualize remote monitoring telemetry with Azure Time Series Insights | Microsoft Docs
3+
description: Learn how to configure your Time Series Insights environment to explore and analyze telemetry generated by the Remote Monitoring solution accelerator.
4+
author: philmea
5+
manager: timlt
6+
ms.author: philmea
7+
ms.date: 08/20/2018
8+
ms.topic: conceptual
9+
ms.service: iot-accelerators
10+
services: iot-accelerators
11+
---
12+
13+
# Use Time Series Insights to visualize telemetry sent from the Remote Monitoring solution accelerator
14+
15+
As an operator, you may want to extend the out-of-the-box data visualization capabilities of the Remote Monitoring solution accelerator. This how-to guide shows you how to use a Time Series Insights environment to visualize and analyze telemetry sent to the Remote Monitoring solution accelerator.
16+
17+
## Prerequisites
18+
19+
To follow the steps in this how-to guide, you need an active Azure subscription. If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
20+
21+
The steps in this how-to guide assume you've deployed the Remote Monitoring solution accelerator to your Azure subscription. If you haven't deployed the solution accelerator, follow the steps in the [Deploy and run a cloud-based remote monitoring solution](quickstart-remote-monitoring-deploy.md) quickstart.
22+
23+
This article assumes the name of your solution accelerator is **contoso-simulation**. Replace **contoso-simulation** with the name of your solution accelerator as you complete the following steps.
24+
25+
[!INCLUDE [cloud-shell-try-it.md](../../includes/cloud-shell-try-it.md)]
26+
27+
[!INCLUDE [iot-accelerators-create-tsi.md](../../includes/iot-accelerators-create-tsi.md)]
28+
29+
## Time Series Insights explorer
30+
31+
The Time Series Insights explorer is a web app you can use to visualize your telemetry.
32+
33+
1. In the Azure portal, select the Time Series Insights **Overview** tab.
34+
35+
1. To open the Time Series Insights explorer web app, click **Go to Environment**:
36+
37+
![Time Series Insights explorer](./media/iot-accelerators-remote-monitoring-time-series-insights/time-series-insights-environment.png)
38+
39+
1. In the time selection panel, select **Last 30 minutes** from the quick times menu and click **Search**:
40+
41+
![Time Series Insights explorer search](./media/iot-accelerators-remote-monitoring-time-series-insights/time-series-insights-search-time.png)
42+
43+
1. In the terms panel on the left, select **temperature** as the **Measure** and **iothub-connection-device-id** as the **Split By** value:
44+
45+
![Time Series Insights explorer query](./media/iot-accelerators-remote-monitoring-time-series-insights/time-series-insights-query1.png)
46+
47+
1. Right-click on the chart and select **Explore events**:
48+
49+
![Time Series Insights explorer events](./media/iot-accelerators-remote-monitoring-time-series-insights/time-series-insights-explore-events.png)
50+
51+
1. The event data shows in a grid:
52+
53+
![Time Series Insights explorer table](./media/iot-accelerators-remote-monitoring-time-series-insights/time-series-insights-table.png)
54+
55+
1. Click the perspective view button:
56+
57+
![Time Series Insights explorer perspective](./media/iot-accelerators-remote-monitoring-time-series-insights/time-series-insights-explorer-perspective.png)
58+
59+
1. Click **+** to add a new query to the perspective:
60+
61+
![Time Series Insights explorer Add Query](./media/iot-accelerators-remote-monitoring-time-series-insights/time-series-insights-new-query.png)
62+
63+
1. Select **Last 30 minutes** as the time span, **Humidity** as the **Measure**, and **iothub-connection-device-id** as the **Split By** value:
64+
65+
![Time Series Insights explorer query](./media/iot-accelerators-remote-monitoring-time-series-insights/time-series-insights-query2.png)
66+
67+
1. Click the perspective view button to view your device telemetry dashboard:
68+
69+
![Time Series Insights explorer dashboard](./media/iot-accelerators-remote-monitoring-time-series-insights/time-series-insights-dashboard.png)
70+
71+
[!INCLUDE [iot-accelerators-cleanup-tsi.md](../../includes/iot-accelerators-cleanup-tsi.md)]
72+
73+
## Next Steps
74+
75+
To learn about how to explore and query data in the Time Series Insights explorer, see [Azure Time Series Insights explorer](https://docs.microsoft.com/azure/time-series-insights/time-series-insights-explorer).

articles/iot-accelerators/iot-accelerators-time-series-insights.md

Lines changed: 0 additions & 143 deletions
This file was deleted.
54.7 KB
Loading
Loading
Loading
Loading
Loading
Loading

0 commit comments

Comments
 (0)