Home > OS >  How to get older data uploaded by devices to Azure IoT hub
How to get older data uploaded by devices to Azure IoT hub

Time:02-11

I have few raspberry-pi uploading data to azure iot hub. I can see all the data on device explorer. But is there any way I can see the data of specific time frame? Lets say complete data of last 1hour?

CodePudding user response:

You can achieve this with Service Bus Explorer

Add the connection string without the entity path and add the entity path as the Endpoint.

Enter Credentials

This will open a new listener window. In the window, you can select a start time. Select a time one hour back. The minimum retention period is a day, but if you decide to choose a time further in the past, that time should be within the retention period of the endpoint. If you select a time before the retention period, you will see events from the beginning of the retention period.

Set Start Time

If you want to inspect the events, you can go to the Events tab and have a look at the data.

  • Related