mirror of
https://github.com/xmrig/xmrig.git
synced 2024-12-23 03:59:41 +00:00
Updated API (markdown)
parent
351987dcbb
commit
02bca6bbaa
1 changed files with 78 additions and 1 deletions
77
API.md
77
API.md
|
@ -9,3 +9,80 @@ Example configuration:
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
If you prefer use command line options instead of config file, you can use options: `--api-port`, `--api-access-token` and `--api-worker-id`.
|
If you prefer use command line options instead of config file, you can use options: `--api-port`, `--api-access-token` and `--api-worker-id`.
|
||||||
|
|
||||||
|
### GET / endpoint
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"id": "150216641909d91c",
|
||||||
|
"worker_id": "worker",
|
||||||
|
"version": "2.4.0",
|
||||||
|
"kind": "cpu",
|
||||||
|
"ua": "XMRig/2.4.0-dev (Linux x86_64) libuv/1.8.0 gcc/5.4.0",
|
||||||
|
"cpu": {
|
||||||
|
"brand": "Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz",
|
||||||
|
"aes": true,
|
||||||
|
"x64": true,
|
||||||
|
"sockets": 1
|
||||||
|
},
|
||||||
|
"algo": "cryptonight",
|
||||||
|
"hugepages": true,
|
||||||
|
"donate": 5,
|
||||||
|
"hashrate": {
|
||||||
|
"total": [
|
||||||
|
232.1,
|
||||||
|
252.6,
|
||||||
|
252.8
|
||||||
|
],
|
||||||
|
"highest": 274.1,
|
||||||
|
"threads": [
|
||||||
|
[
|
||||||
|
57.1,
|
||||||
|
62.5,
|
||||||
|
62.9
|
||||||
|
],
|
||||||
|
[
|
||||||
|
58.8,
|
||||||
|
62.5,
|
||||||
|
63.1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
57.2,
|
||||||
|
63.7,
|
||||||
|
63.5
|
||||||
|
],
|
||||||
|
[
|
||||||
|
58.9,
|
||||||
|
63.7,
|
||||||
|
63.2
|
||||||
|
]
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"results": {
|
||||||
|
"diff_current": 10000,
|
||||||
|
"shares_good": 1849,
|
||||||
|
"shares_total": 1849,
|
||||||
|
"avg_time": 41,
|
||||||
|
"hashes_total": 18490000,
|
||||||
|
"best": [
|
||||||
|
10674268,
|
||||||
|
5505855,
|
||||||
|
5346760,
|
||||||
|
4975689,
|
||||||
|
4011628,
|
||||||
|
3687853,
|
||||||
|
3148608,
|
||||||
|
2876595,
|
||||||
|
2619473,
|
||||||
|
2451160
|
||||||
|
],
|
||||||
|
"error_log": []
|
||||||
|
},
|
||||||
|
"connection": {
|
||||||
|
"pool": "pool.minemonero.pro:5555",
|
||||||
|
"uptime": 75884,
|
||||||
|
"ping": 25,
|
||||||
|
"failures": 0,
|
||||||
|
"error_log": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
Loading…
Reference in a new issue