The form and POST processing can handle more than 3 pools dynamically scaling up to 20 - joeykrim
Thanks! I registered an account here so I can keep track of development. I hope to continue contributing code.
Project is great, definitely appreciated!
Thanks for that one, the way you handled those POST arrays was really cool.
Still missing the prioritization of pools "on the fly" and buttons like Restart and Quit, as in old miner.php page.
I'm looking into this .. if you have a link to the miner.php you're referring to handy, could you post that?
I'm new to all of this and takes a little bit to get up to speed!
There is a copy of miner.php in the root of the git repo, it was written by another guy here called kano (He is one of the cgminer developers). It was sort of the reference PHP client that I built everything on. No origional code exists anymore in MinePeon but i still keep it there for posterity.
...could you please add this features in the future:
* cpu usage
* cpu temperature
I started doing a little digging and figured I'd post my notes here. I'm not sure what MineForeman has in mind or is currently working on, but I don't think it should be *too* bad to add cpu Temperature and perhaps also cpu stats.
I found some info on how arch linux handles cpu temperature:
https://wiki.archlinux.org/index.php/Raspberry_Pi#TemperatureTemperatures sensors for the board itself are including as part of the raspberrypi-firmware-tools package. The RPi offers a sensor on the BCM2835 SoC (CPU/GPU):
/opt/vc/bin/vcgencmd measure_temp
temp=49.8'C
Alternatively, simply read from the filesystem:
% cat /sys/class/thermal/thermal_zone0/temp
49768
Also, there is another project, quote earlier in this thread, that gives some great stats on cpu usage as well as many other aspects:
https://github.com/imjacobclark/RaspcontrolPerhaps we could include portions of that project? License for the project seems to allow that:
https://github.com/imjacobclark/Raspcontrol/blob/master/LICENCECPU temp is already being recorded the same way that hashrate is, if you look in /opt/minepeon/etc/cron.d/5min/ there is a file called cputemp or something that handles it, the rrd is output to the normal place (I don't have a peon in front of me so I am relying on memory for paths).
Anyways, glad to have you aboard!
Neil