Skip to content

Commit 2cd0c5d

Browse files
committed
Added docker logs - to master
1 parent 9ada891 commit 2cd0c5d

File tree

4 files changed

+32
-9
lines changed

4 files changed

+32
-9
lines changed

articles/iot-edge/quickstart-linux.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,15 @@ sudo docker ps
9090

9191
## View generated data
9292

93-
You can monitor your new IoT Edge device's status by clicking on it in IoT Edge Explorer page of your IoT hub.
93+
In this quickstart, you created a new IoT Edge device and installed the IoT Edge runtime on it. Then, you used the Azure portal to push an IoT Edge module to run on the device without having to make changes to the device itself. In this case, the module that you pushed creates environmental data that you can use for the tutorials.
9494

95-
You can view the telemetry the device is sending by using the [IoT Hub explorer tool][lnk-iothub-explorer].
95+
View the messages being sent from the tempSensor module:
96+
97+
```cmd/sh
98+
sudo docker logs -f tempSensor
99+
```
100+
101+
You can also view the telemetry the device is sending by using the [IoT Hub explorer tool][lnk-iothub-explorer].
96102

97103
## Clean up resources
98104

@@ -106,9 +112,9 @@ az iot hub delete --name {your iot hub name} --resource-group {your resource gro
106112

107113
You learned how to deploy an IoT Edge module to an IoT Edge device. Now try deploying different types of Azure services as modules, so that you can analyze data at the edge.
108114

115+
* [Deploy your own code as a module](tutorial-csharp-module.md)
109116
* [Deploy Azure Function as a module](tutorial-deploy-function.md)
110117
* [Deploy Azure Stream Analytics as a module](tutorial-deploy-stream-analytics.md)
111-
* [Deploy your own code as a module](tutorial-csharp-module.md)
112118

113119

114120
<!-- Images -->

articles/iot-edge/quickstart.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,15 @@ docker ps
105105

106106
## View generated data
107107

108-
You can monitor your new IoT Edge device's status by clicking on it in IoT Edge page of your IoT hub.
108+
In this quickstart, you created a new IoT Edge device and installed the IoT Edge runtime on it. Then, you used the Azure portal to push an IoT Edge module to run on the device without having to make changes to the device itself. In this case, the module that you pushed creates environmental data that you can use for the tutorials.
109109

110-
You can view the telemetry the device is sending by using the [IoT Hub explorer tool][lnk-iothub-explorer].
110+
View the messages being sent from the tempSensor module:
111111

112+
```cmd/sh
113+
docker logs -f tempSensor
114+
```
115+
116+
You can also view the telemetry the device is sending by using the [IoT Hub explorer tool][lnk-iothub-explorer].
112117
## Clean up resources
113118

114119
When you no longer need the IoT Hub you created, you can use the [az iot hub delete][lnk-delete] command to remove the resource and any devices associated with it:

articles/iot-edge/tutorial-simulate-device-linux.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,15 @@ Manage your Azure IoT Edge device from the cloud to deploy a module which will s
8787

8888
## View generated data
8989

90-
You can monitor your new IoT Edge device's status by clicking on it in IoT Edge page of your IoT hub.
90+
In this quickstart, you created a new IoT Edge device and installed the IoT Edge runtime on it. Then, you used the Azure portal to push an IoT Edge module to run on the device without having to make changes to the device itself. In this case, the module that you pushed creates environmental data that you can use for the tutorials.
9191

92-
You can view the telemetry the device is sending by using the [IoT Hub explorer tool][lnk-iothub-explorer].
92+
View the messages being sent from the tempSensor module:
93+
94+
```cmd/sh
95+
docker logs -f tempSensor
96+
```
97+
98+
You can also view the telemetry the device is sending by using the [IoT Hub explorer tool][lnk-iothub-explorer].
9399

94100
## Next steps
95101

articles/iot-edge/tutorial-simulate-device-windows.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,15 @@ Manage your Azure IoT Edge device from the cloud to deploy a module which will s
104104
105105
## View generated data
106106
107-
You can monitor your new IoT Edge device's status by clicking on it in IoT Edge page of your IoT hub.
107+
In this quickstart, you created a new IoT Edge device and installed the IoT Edge runtime on it. Then, you used the Azure portal to push an IoT Edge module to run on the device without having to make changes to the device itself. In this case, the module that you pushed creates environmental data that you can use for the tutorials.
108108
109-
You can view the telemetry the device is sending by using the [IoT Hub explorer tool][lnk-iothub-explorer].
109+
View the messages being sent from the tempSensor module:
110+
111+
```cmd/sh
112+
sudo docker logs -f tempSensor
113+
```
114+
115+
You can also view the telemetry the device is sending by using the [IoT Hub explorer tool][lnk-iothub-explorer].
110116

111117
## Next steps
112118

0 commit comments

Comments
 (0)