mirror of
https://github.com/snowykami/server-status-client.git
synced 2024-11-21 22:57:59 +08:00
✨ 排除linux下无关分区
This commit is contained in:
parent
89d7fa3145
commit
db7aeabe7b
@ -90,6 +90,9 @@ sudo systemctl start server-status-client
|
||||
```shell
|
||||
git pull
|
||||
sudo systemctl restart server-status-client
|
||||
#
|
||||
git pull
|
||||
systemctl restart server-status-client
|
||||
```
|
||||
|
||||
### 服务端
|
||||
|
@ -6,6 +6,8 @@ from typing import Any
|
||||
import psutil
|
||||
import requests
|
||||
|
||||
excluded_partition_prefix = ("/var", "/boot", "/run", "/proc", "/sys", "/dev", "/tmp", "/snap")
|
||||
|
||||
|
||||
def log(*args):
|
||||
# 在输出前加上时间
|
||||
@ -229,6 +231,10 @@ class Client:
|
||||
for part in psutil.disk_partitions():
|
||||
try:
|
||||
usage = psutil.disk_usage(part.mountpoint)
|
||||
|
||||
if part.mountpoint.startswith(excluded_partition_prefix):
|
||||
continue
|
||||
|
||||
self.hardware.disks[part.device] = {
|
||||
"total": usage.total,
|
||||
"used": usage.used,
|
||||
|
Loading…
Reference in New Issue
Block a user