apolloapi-v2/scripts/os_stats_fake
2018-11-27 10:45:37 +01:00

46 lines
816 B
Bash
Executable File

#!/bin/bash
cat << EOF
{
"hostname": "orangepizero",
"operatingSystem": "Ubuntu 18.04 bionic",
"uptime": "2018-11-27 07:09:13",
"loadAverage": "0.00 0.00 0.00 1/118 27205",
"architecture": "armv7l",
"temperature": "41745",
"minerTemperature": "0",
"minerFanSpeed": "0",
"activeWifi": "",
"network": [{
"name": "eth0",
"address": "192.168.1.20",
"mac": "02:42:94:72:22:61"
}, {
"name": "wlan0",
"address": "",
"mac": "12:42:94:72:22:61"
}],
"memory":
{
"total": 245760,
"available": 109952,
"used": 233220,
"cache": 97412,
"swap": 1280
},
"cpu":
{
"threads": 4,
"usedPercent": 29
},
"disks": [
{"total":7524560,
"used":971560,
"mountPoint":"/"},
{"total":49584,
"used":4348,
"mountPoint":"/var/log"}
]
}
EOF