Documentation

getSystemInfo


This command returns system information about the node.

Request

{ 
    "jsonrpc": "2.0", 
    "id": 1, 
    "method": "getSystemInfo"
}

Response

{
    "jsonrpc": "2.0",
    "result": {
        "cpu_threads": 12,
        "cpu_cores": 12,
        "memory_total": 34359738368,
        "memory_avail": 15883485184,
        "disk_total": 494384795648,
        "disk_avail": 108517797888,
        "process_threads": 9,
        "open_files": 226,
        "memory_percent": 53.29947471618652,
        "disk_percent": 78.0505212564704
    },
    "id": 1
}