what is the best web monitoring for this miner?
kerney666 said sometime ago "I have some plans on getting a little Python hack going that acts as an adapter against the messier sgminer API and provides an xmr stak equivalent html and http/json interface. Time time time."
Maybe an adapter for claymore monitor or xmr-stak
https://github.com/rdugan/cgminerhttpinterfaceAfter installing, you can add this to your miner startup bat to auto-start the server if it's not already running. Doesn't auto-close tho.
SET HTTP_PORT=8080
SET API_HOST=localhost
SET API_PORT=4028
QPROCESS "chi-server.exe">NUL
IF %ERRORLEVEL% EQU 0 GOTO :startMiner
start /min "TRM Monitor" chi-server -w %HTTP_PORT% -a %API_HOST% -p %API_PORT%
:startMiner
...