Azure IoT Edge Module Identity Translation for virtual Downstream Devices

后端 未结 1 756
北海茫月
北海茫月 2021-01-27 09:57

I have the following setup:

  • Multiple modbus sensors
  • 1 Gateway connected to these sensors via ModbusTCP. On this gateway, one Azure IoT Edge module is runni
相关标签:
1条回答
  • 2021-01-27 10:15

    The short answer is: there is no native support in the Azure IoT stack that supports that scenario. The documentation you have linked to has been under discussion for a while now and a feature request has been created. That doesn't mean it's impossible though, but it involves some workarounds that might not be acceptable to your use case.

    One way to provide identity to your sensor is to create a device for each sensor in IoT Central and to pass their connection information to the module twin of a module you need to build. That module would receive the sensor values, figure out what connection information to use and send telemetry straight to IoT Central (so not through the Edge Runtime).

    Update: Microsoft created a sample module that shows how to provide a basic implementation of identity translation. Other than that, no native support in the runtime yet.

    0 讨论(0)
提交回复
热议问题