How to display data from stream analytics in a graphical interface without saving the data on premise.

Javier Familiar Gijon 40 Reputation points
2023-04-11T15:18:43.9533333+00:00

I want to display data acquired from stream analytics in a graphical interface. Power BI is not an option, and I prefer to use Windows Forms. I do not want to download the data; it should only be displayed on screen.

Azure Stream Analytics
Azure Stream Analytics
An Azure real-time analytics service designed for mission-critical workloads.
330 questions
{count} votes

Accepted answer
  1. Sander van de Velde 28,956 Reputation points MVP
    2023-04-11T22:02:25.4366667+00:00

    Hello @Javier Familiar Gijon , So you need a graphical interface showing Stream Analytics output in real-time. You do not want to store any event in a temporary cloud database or local database. It's not recommended to let the cloud know your application, your Windows app needs to connect to the cloud and listen for outputted messages. I recommend checking out Azure SignalR or Azure PubSub. These services emit incoming messages to any listening client, including local apps (once connected). This means something like this (with signalR):

    ASA Azure Function output -> Azure Function -> SignalR Service <- Your application once connected to the service 
    

    If the response helped, do "Accept Answer". If it doesn't work, please let us know the progress. All community members with similar issues will benefit by doing so. Your contribution is highly appreciated.


0 additional answers

Sort by: Most helpful