Azure / Industrial-IoT

Azure Industrial IoT Platform
MIT License
521 stars 215 forks source link

Azure IoT Edge OPC publisher Module Not sending the defined parameters #1654

Closed A-DavidJeyapaul closed 2 years ago

A-DavidJeyapaul commented 2 years ago

Hi Team,

We are using IoT Edge OPC publisher Module to publish the data from our OPC server to IoT hub. Initially it was sending the data with the below schema.

image

And Now its not updated to as per the below one.

image

The difference between both of the schema is ApplicationUri and EndpointUrl

We have multiple OPC servers and we are segregating the data based on OPC servers in Azure Stream Analytics Jobs. Since this was updated, our data segregation is gets affected and none of the data is getting processed by our Job.

Thanks in advance for your support.

cristipogacean commented 2 years ago

@A-DavidJeyapaul, that's right, we fixed a regression in 2.8.2 related to the EdnpointUrl that leads to this behavior. If you need the ApplicationUri, you can get that adding a cli argument: --FullFeaturedMessage=true (--fm=true). This will add the application uri to the message as well. more details on the telemetry payload here.

A-DavidJeyapaul commented 2 years ago

Thanks for your support @cristipogacean and apologize for delayed response.