user185981
user185981

Reputation: 19

PowerBI : Creating Real time report without using Azure Stream Analytics

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

Answers (2)

Pratik Bhavsar
Pratik Bhavsar

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

Rick Grimes
Rick Grimes

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

Related Questions