Claymore can you format your json output with key value pairs? Current output is very hard to parse and get individual values.
{"id": 0, "result": ["4.3", "8", "93479;11;0", "18352;18914;18191;18809;19210", "0;0;0", "0;0;0;0;0", "67;53;66;50;66;48;56;61;60;56", "us1.ethpool.org:3333"], "error": null}
something like result.eth_mh would be great to get just the hashrate value for example.
Also someone that know curl explain why
telnet localhost 3333
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
{"id":0,"jsonrpc":"2.0","method":"miner_getstat1"}
works to get a response, but
curl -i -X POST --data '{"id":0,"jsonrpc":"2.0","method":"miner_getstat1"}'
http://localhost:3333does not work? Im not that great with curl so not sure if I formatted that request right.