I've got this mostly set up, but the "Revenue" section of the page is only picking up the first of my two machines. I've got two machines here mining, one is a PC running Debian Wheezy with bfgminer, and the other is a BBB running cgminer for the USB devices not supported by bfgminer.
The "Revenue" section is only picking up the cgminer hash rate - it doesn't seem to add the extra hashes to the total for some reason, so my Revenue is low.
My config is as follows:
'use strict';
module.exports = {
title: 'HellDiverUK Mining Ops',
webinterface: {
port: 3000
},
modules: [
{
module: 'revenue/solo',
miner: 'miner1',
market: 'market1',
technical: 'technical1'
},
{
id: 'miner1',
module: 'miners/bfgminer'
},
{
module: 'miners/bfgminer',
title: 'BeagleBoneBlack cgminer',
host: '192.168.5.195',
port: 4030,
interval: 2500
},
{
module: 'miners/bfgminer',
title: 'Wheezy bfgminer',
host: '127.0.0.1',
port: 4028,
interval: 2500
},
{
id: 'market1',
module: 'markets/bitcoincharts'
},
{
id: 'technical1',
module: 'technical/blockchainInfo'
}
]
};
Any ideas?
Edit: Actually, it's now not working at all and I don't see what I broke.
I'd appreciate it if someone posted their configuration so I can see where I've broken it.