mirror of
https://github.com/Retropex/apolloapi-v2.git
synced 2025-05-21 09:32:36 +02:00
37 lines
630 B
Bash
Executable File
37 lines
630 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cat << EOF
|
|
{
|
|
"hostname": "orangepizero",
|
|
"operatingSystem": "Ubuntu 18.04 bionic",
|
|
"uptime": "2018-11-06 14:01:22",
|
|
"loadAverage": "0.00 0.00 0.00 1/120 2859",
|
|
"architecture": "armv7l",
|
|
"temperature": "40656",
|
|
"minerTemperature": "76",
|
|
"minerFanSpeed": "4567",
|
|
"activeWifi": "befree",
|
|
"memory":
|
|
{
|
|
"total": 245760,
|
|
"available": 127384,
|
|
"used": 207276,
|
|
"cache": 90348,
|
|
"swap": 256
|
|
},
|
|
"cpu":
|
|
{
|
|
"threads": 4,
|
|
"usedPercent": 0
|
|
},
|
|
"disks": [
|
|
{"total":7678936,
|
|
"used":1468092,
|
|
"mountPoint":"/"},
|
|
{"total":49584,
|
|
"used":4312,
|
|
"mountPoint":"/var/log"}
|
|
]
|
|
}
|
|
EOF
|