Customizing an IoT Suite
All the pre-configured solutions give us an end-to-end solution with complete integration of the multiple Azure Services as required to build an IoT solution. It does help in going live faster or doing a PoC with the nearest common scenarios we see based on each solutions capability.
But certainly, it may not be the exact solution you are looking for. You can extend and customize the solution for specific scenarios as you wish.
Let's understand how it works to customize the Remote monitoring pre-configured IoT Suite solutions.
How to do it...
In this recipe we will customize pre-configured solution:
- Download remote monitoring: https://www.github.com/Azure/azure-iot-remote-monitoring.
- Open the solution in Visual Studio.
- Let's customize the telemetry data, that the simulator is sending.
How it works...
The code repository is well structured and it is easy to access the source code. To modify the telemetry message, navigate to Simulator/Simulator.WebJob/Cooler/Telemetry/
.
The...