Does anyone know of any good software which can be used to monitor the stats of SP30 miners?
I have decided that pools sometimes just make up stats and would like an easier way to check the status of the miners than logging into each one individually.
Sometimes the pools will tell me that the miner is down to 1TH/s, when I log into the miner directly I see that it is running at 4.5TH/s.
Thanks guys.
The pool estimates the worker hashrate based on the number of accepted and rejected shares above the minimum pool difficulty.
The miner reports it's hashrate, based on the hardware output.
CGMiner reports something else too, based on the connectivity to the hardware (via the drivers) and the pool.
Now, SP10-SP3x can be programmed to report most of their parameters at regular intervals, to something which is programmed to listen for their output.
The SP units have controllers running a modified version of minepeon. That is, they have a webserver (lighttpd) with PHP .. and being Linux boards, they have cron.
I wrote a miner php script to extract most of the info disregarding the pool settings in cgminer. I am more interested in the machine stats, than the pool stats.
If the pool you're mining in does not find a block, you won't get paid anything anyway (true for most of the pools outthere, if not PPS).
The miner script posts the data via JSON format to another script hosted at 1and1, which logs it in a database. Then the "graphic.php" script charts it. By the way, the charts are zoomable
Presently all the code is with a lot of hardcoded parameters .. I'm planning to adapt it to parametric queries and post it on github when ready (
https://github.com/wh00per)