I have data that changes by the minute in regards to power plants. For instance, one of the things I have to determine is how much natural gas is going to be used over the course of the day to supply electricity to the grid.
Right now, I pull data from MS SQL, and manipulate the total net generation of the plant to figure out the amount of GJ's burned to produce that amount of power. This is one among many processes where I take MS SQL Data --> Manipulate Data Frames in Python --> Have final result and projection in a data frame
I would love to have this as a streaming table, but I'm unsure of how to do it with a service like grafana. How would I take the final data output from python and feed it to grafana? Would I need to input the results back into a database that Grafana can then pull? This information ideally shouldn't be on the internet, and just be a local server.
If it worked my final plan was to put it on a separate screen on my desk using something like a raspberry pi.
Cheers, and thanks in advance!