SysInfo call
Returns system info.
HTTP GET:
$ curl localhost:9123/sysinfo
$ curl localhost:9123 --data-binary '{"cmd":"infosystem","params":[]}'
$ atomminer-cli --raw info system
Response example:
{ "cpu": "4x2.4GHz", "arch": "x86_64", "platform": "linux 4.4.0-135-generic x86_64", "os": "Ubuntu 16.04.5 LTS", "ram": "7.60GB", "vram": "8.38GB", "timestamp": 1577370123, "vram_used": 3855486976, "vram_atom": 5492736, "ram_used": 6972715008, "ram_atom": 17186816, "cpu_all": 39.672852, "cpu_atom": 7.181873, "sw": "atomminer-cli v1.0.3RC6" }
Response fields
Field | Type | Description |
---|---|---|
cpu | string | CPU type |
arch | string | CPU architecture |
platform | string | Platform name or description |
os | string | Operating System name, if known |
ram | string | Total RAM on the host PC |
vram | string | Total Virtual RAM |
timestamp | int | UNIX timestamp when current snapshot was taken |
vram_used | int | Total used Virtual RAM |
vram_atom | int | Virtual RAM used by AtomMiner |
ram_used | int | Total RAM used |
ram_atom | int | RAM used by AtomMiner |
cpu_all | double | Percentage of CPU load/usage |
cpu_atom | double | CPU usage by AtomMiner |
sw | string | Software name and version |