My thought is to put together a screen-scraping application to extract hash rates and then make them available via a JSON API which I can then use remotely from a web server or app. The app would be configurable so that it could extract the information from any miner app that outputs status information in a console (which is pretty much every miner). Before I embark on that project is there anything existing that would accomplish that?
Ultimately it could also extract temperatures, fan speeds, and anything else that the miner displays in the console. I would like to build a web dashboard that displays all of the info for the entire farm.
Fetching the output of the console window isnt that hard. I've done it before with Delphi. Just Google something like "capturing output from command window". You will need to decide which programming language/app to use..