As the title says, whats the correct way to configure an IoTEdge Module to report data to Remote Monitoring? Actually I have a custom module running on an IoTEdge device that is working correctly (I can check that is working properly by looking at the docker logs of the module) , but its not transmitting anything to the Remote monitoring dashboard, by the way the device is listed on the available devices on the Azure Remote Monitoring but it is offline. I suppose that it depends on the MessageSchema and MessageTemplate that are not configured. I can't find any specific documentation about this topic, can anyone point me in the right direction?
How to correctly configure IoTEdge Module to report data to Remote Monitoring
261 Views Asked by FabioEnne At
1
There are 1 best solutions below
Related Questions in AZURE-IOT-EDGE
- Get Eflow status from a remote machine via ssh and python: does not execute powershell command
- Turn .Net 6 Background Service app as IoT Edge Module
- Problem with running Azure spatial-analysis container
- After updating a reported property, attempting to fetch it returns the previous version, not the latest one in Azure Module Client
- Azure IoT DPS - Enrollment Group - Create Or Update - Rest API
- Azure IoT Edge. Module Twin Configuration. Create a target condition based of device twin tags?
- IotEdge eFlow: copyEflowVMFile raises errors in Vsock
- Device troubleshooting tools
- GPIO / System.Device.Gpio / RegisterCallbackForPinValueChangedEvent / Rising and Falling Continuously with circuit closed
- IOT Edge for Linux on Windows (eflow) - nested VM deployement - proxy settings - corporate firewall
- How to send tool data from telemetry Azure IoT Hub to Azure Functions?
- Environment variable IOTEDGE_WORKLOADURI is required in Java azure IoT SDK using ModuleClient Class
- Using iotedgehubdev generated iothub modules don't run locally due to "repository name must be lowercase"
- MS IotEdge eFlow: Connect-EflowVM error - wants password
- How to debug IOT edge modules running as Linux containers from Visual studio
Related Questions in AZURE-IOT-SUITE
- Azure IoT Explorer No Longer Getting Device Telemetry
- How to create alert on the azure iot device on disconnect status
- Azure IoT Hub - fail to create a layered deploy
- Issue connecting device with Azure Iot central
- Send huge data bytes approx 1000 MB from Module A to Module B in Azure IoT Edge
- Do leaf/downstream devices connect directly to iot-hub even when edge is used as gateway?
- Can ASP.NET Web Forms App be used for visualizing data from Azure IoT Hub?
- Why should I restore the keys in Azure Device Provisioning?
- How many numbers of device can be registered by Azure IoT Hub?
- How to catch Device Provisioning Event with Azure Logic App?
- How can I handle exception in Azure Logic App
- How to fix "Azure Function Output Adapter failed to write events"
- Azure Device Provisioning - Setting Device Twin property
- IPhone as a gateway for iot device -- Azure IOT HUB
- How to access various timestamps in Azure Iot Edge Pipeline?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Are you asking about the original V1 version of the remote monitoring solution, or the newer V2 version? If it's the original version, you would need to, at least once, send a DeviceInfo structure (https://learn.microsoft.com/en-us/azure/iot-suite/iot-suite-v1-remote-monitoring-device-info#device-metadata) to the IoTHub associated with the solution. I haven't tried it yet, but it should work for the edge device (I don't think it would have an issue with the module concept). If it's the V2 version, I would need to investigate further.