0

I've created an Azure IoT Central solution, where I successfully registered an IoT device. I'm able to save telemetry/status/event data for the device, however I could not find an option to query the existing data using .NET code. For example I would like to query the telemetry data for the last month using C#.

Is it not supported by the SDK?

asergaz
  • 996
  • 5
  • 17
Norbert
  • 31
  • 2

1 Answers1

0

In order to query the telemetry data for the last month you will need to export that to a Blob Storage or routing it to another DB (like Cosmos DB). The supported way to export your data in Azure IoT Central is described here.

You can then leverage REST API on your c# code to extract the data from your devices.

asergaz
  • 996
  • 5
  • 17