I set up the WTM switcher from the great instructions provided and it "appears to be switching" to the most profitable coin just fine.
nvOC wtm-log view shows the coins being checked and rechecked and the results usually match what I see on the WhatToMine website with my settings.
And when I peek in 1bash the new coin has taken it's place in COIN=xxxx.
But for the life of me I cannot see the miner actually switching to anything new, even when the new coin algo changes from say a Equihash coin to a NeoScrypt coin, etc.
And trying to verify by looking at the MPH site that the WTM switched miner is mining what the switch says it is, appears impossible.
Is there some log or view that will let me see in real time, at the miner, what coin it is mining?
Just being anal, I know, but when running a test I like to know if I have things set up correctly.
Thanks again!
You can use minerinfo coded by papampi or looking
WTM tab in guake terminal. To see guake terminal on the rig
press F12Minerinfo is a web page that uses nvoc_logs to concatenate some data for views of history minning rig.
You can modify it manually for you convenance if you are able to understand the code.
Notably tail -f command.
minerinfo is in /home/m1 directory. You can view it on your favorite browser by accessing URL like this :
http://[RIG_IP_ADDRESS]/cgi-bin/minerinfoYou also can use tail -f command on screenlog.0 file that is placed on ramfs part :
cd /home/m1/nvoc_logs
tail -f screenlog.0
or
tail -f /home/m1/nvoc_logs/screenlog.0exit tail command by ctrl+c without worrying, scrrenlog.0 is just a LOG file from screen.
If you want to see minning process in direct you can also use screen -r command, but it's preferable to use
./nvOC miner-log
in /home/m1.