/system/info 接口
获取cpu, 内存信息等信息。
请求方式
POST /api/system/info
返回数据
{
"device-name": "USB Fusion",
"uptime": 8410,
"cpu": {
"total": 1624896,
"idle": 1281701,
"usage": 2110
},
"mem": {
"total": 8069612,
"avail": 7171768
},
"datetime": {
"cur-time": "2021-12-20 13:25:57",
"zonename": "Asia/Shanghai",
"ntp-enable": true,
"ntp-server1": "0.pool.ntp.org",
"ntp-server2": "1.pool.ntp.org"
},
"auto-reboot":{
"enable":true,
"hour":23,
"min":59,
"week":[
1,
2
]
},
属性 | 说明 |
---|---|
status | 0:执行成功。返回其它值请参考 API 状态码。 |
device-name | 设备名称。 |
uptime | 开机时长, 单位s。 |
cpu.total | CPU 总时间。 |
cpu.idle | CPU 空闲时间。 |
cpu.usage | CPU 使用率 x 100。 |
mem.total | 系统总内存, 单位KB。 |
mem.avail | 系统可用内存,单位KB。 |
datetime.cur-time | 系统时间,格式:yyyy-MM-dd HH:mm:ss。 |
datetime.zonename | 时区名称。 |
datetime.ntp-enable | NTP 使能。 |
datetime.ntp-server1 | NTP服务器1。 |
datetime.ntp-server2 | NTP服务器2。 |
auto-reboot.enable | 使能auto-reboot |
auto-reboot.hour | 时, 24小时制 |
auto-reboot.min | 分 |
auto-reboot.week | 周 |