Will take a closer look next time it does this. Is there anything else I can look at to help with the problem?
Rich
you can ssh in and run cgminer-api to see what it says.. it would give you more of a direct stats then the ui or the pool..
if it shows the 5s at 15ghs but the avg at 5gsh then its just averaging wrong and everything is ok. you can restart it but its prob not needed.
i can show you a quick script that will restart if gsh goes low..
put this in a text and put it in /usr/bin and make it 0755 then run it with scheduled tasks running every 5 or 10 minutes.
###START
minhash=1400
SPEED=`cgminer-api | grep 'GHS av] => ' | cut -c 16- | tr -d '.'`
if [ "$SPEED" -lt $minhash ]; then
logger "cgminer was restarted for low hash"
/etc/init.d/cgminer stop
killall -9 cgminer
sleep 1
/etc/init.d/cgminer start
exit 0;
fi
###END
what this will do is check the avg ghs, if its less then 14 it will restart.. you can change the min to whatever. no decimal.