Reputation: 19
I am new to Power BI. I have a requirement where I need to create a Real-time Report.
My data is coming from Event Hub but we don't want to use Azure Stream Analytics.
So how can we do this?
Upvotes: 0
Views: 127
Reputation: 858
I worked on a demo report with similar requirement. To demonstrate how things will work, we created a real-time report that shows weather information like wind speed, temperature, etc live data.
To eliminate azure from the picture, we had to create a c# console application, which runs in the background and pushes the data in the database at a specified interval of time (in our case every 15 seconds) with a timestamp.
Upvotes: 0
Reputation: 113
You can use other opportunities like pubnub or create a small scheduled console application/script (and use the Power BI API).
More information for creating such an application can be found here: https://www.sqlshack.com/real-time-streaming-in-power-bi/
Upvotes: 0