I am new to Azure. I have data being entered into an Azure Table Storage via sensors every 10 minutes. I want to display the results in a graph via Power BI.
My knowledge thus far suggests that Stream analytics only takes data from Event hubs or Blob storage. Is it possible to connect my azure table storage (in Azure storage explorer) to power BI and how do I do it?
I have tried uploading my table data into Power BI Designer and made graphs but it's obviously not in real time, which is what I'm after.
Any help would be so useful!
I recommend setting up Azure IoT hub as your main data receiver instead of directly inserting data into Table Storage. That way you can setup Stream Analytics to consume from IoT hub and output to Table Storage and PowerBI for a real time data feed.
Also IoT hub is designed specifically for capturing sensor information from devices and comes with many other goodies such as per device auth, bi-directional messages, and capacity for massive scale out.