Browse Source

Send client instance count per worker to ckdb

master
Con Kolivas 9 years ago
parent
commit
dc7e0ebbc9
  1. 3
      src/stratifier.c

3
src/stratifier.c

@ -6248,11 +6248,12 @@ static void update_workerstats(ckpool_t *ckp, sdata_t *sdata)
ghs5 = worker->dsps5 * nonces; ghs5 = worker->dsps5 * nonces;
ghs60 = worker->dsps60 * nonces; ghs60 = worker->dsps60 * nonces;
ghs1440 = worker->dsps1440 * nonces; ghs1440 = worker->dsps1440 * nonces;
JSON_CPACK(val, "{ss,si,ss,ss,sf,sf,sf,sf,sb,ss,ss,ss,ss}", JSON_CPACK(val, "{ss,si,ss,ss,si,sf,sf,sf,sf,sb,ss,ss,ss,ss}",
"poolinstance", ckp->name, "poolinstance", ckp->name,
"elapsed", elapsed, "elapsed", elapsed,
"username", user->username, "username", user->username,
"workername", worker->workername, "workername", worker->workername,
"instances", worker->instance_count,
"hashrate", ghs1, "hashrate", ghs1,
"hashrate5m", ghs5, "hashrate5m", ghs5,
"hashrate1hr", ghs60, "hashrate1hr", ghs60,

Loading…
Cancel
Save