Hello community,
I’ve created a program to push via JSON data to Azure in a Event Hub and read it into a Stream Analytics service and give it to Power BI.
Example Query:
SELECT
count(id) as Zaehler, [group]
INTO [PowerBI]
FROM
[inputA]
GROUP BY [group], TumblingWindow(second, 10)
In Power BI I created a report and pinned it onto a live dashboard.
My problem is now, that the dashboard and the report not auto refreshing when new data comes. If I refresh the page or the browser the graphs and tables in the dashboard a refreshed with the new data.
Anything in Stream Analytics is set to default. Also I've tried with a non aggregate query ...
Can anyone help me?
Thanks in advance.