Hello @NickWeliodro-9668
Thanks for posting this issue. You may be interested in checking the telemetry received in the IoTHub side. Please try the steps similar in another document such as: https://learn.microsoft.com/en-us/azure/iot-hub/tutorial-routing-view-message-routing-results
Step 1: Code to send the telemetry in the UTF8 encoded , .JSON format.
Check the encoding of the telemetry message sent.
C# code to send the encoded message as utf-8 instead of utf-32.
Below are the properties I have used. Please try these in your code as well.
message.ContentEncoding = "utf-8";
message.ContentType = "application/json";
So when you read the telemetry messages from any tool, such as VS code or Device explorer, you will see the below format telemetry .
[{"deviceId":"Contoso-Test-Device","temperature":21.319264327790247,"humidity":68.288192045077778,"pointInfo":"This is a normal message."}]Properties:
'level': 'normal'
Step 2: Provide the right info in the ASA job , Input
Step 3: Check the Dataset created in the PowerBi app.
Finally, I was able to create a PowerBi report with the Dataset.
Please comment in the below section for further help in this matter.
