-
-
-
{{ network.name }}
-
{{ network.speed | formatSpeed }}
-
- {{ network.online }}
-
+
+
+
+
{{ network.name }}
+
{{ network.speed | formatSpeed }}
+
+ {{ network.online }}
+
+
+
+
+ ↑ {{ network.currentUpload | formatDataSize }}
+
+ |
+
+ ↓ {{ network.currentDownload | formatDataSize }}
+
+
+
+ Total Up
+ {{ network.totalUpload | formatDataSize }}
+ |
+ Down
+ {{ network.totalDownload | formatDataSize }}
+
+
-
-
- ↑ {{ network.currentUpload | formatDataSize }}
-
- |
-
- ↓ {{ network.currentDownload | formatDataSize }}
-
-
-
- Total Up
- {{ network.totalUpload | formatDataSize }}
- |
- Down
- {{ network.totalDownload | formatDataSize }}
-
-
-
-
-
-
-
-
+
+
From fa4a3d681b416cbab2a0e863446fbdf9f729e430 Mon Sep 17 00:00:00 2001
From: Kryce49 <108368858+Kryce49@users.noreply.github.com>
Date: Sat, 22 Mar 2025 11:45:01 +0100
Subject: [PATCH 3/3] Update widgets.md gl-disk-space and gl-network-interfaces
Edited docs for new filter options in gl-disk-space and gl-network-interfaces.
---
docs/widgets.md | 13 +++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)
diff --git a/docs/widgets.md b/docs/widgets.md
index 82433158b9..87edc6b084 100644
--- a/docs/widgets.md
+++ b/docs/widgets.md
@@ -2598,7 +2598,8 @@ Recent memory usage chart
### Disk Space
-List connected disks, showing free / used space and other info (file system, mount point and space available)
+List connected disks, showing free / used space and other info (file system, mount point and space available).
+Use "Disks" to filter available disks and give them a friendly name.

@@ -2608,6 +2609,10 @@ List connected disks, showing free / used space and other info (file system, mou
- type: gl-disk-space
options:
hostname: http://192.168.130.2:61208
+ Disks:
+ - /dev/mapper/md1p1: HDD 1
+ - /dev/mapper/md2p1: HDD 2
+ - /dev/mapper/md3p1: HDD 3
```
---
@@ -2662,7 +2667,8 @@ Shows recent historical system load, calculated from the number of processes wai
### Network Interfaces
-Lists visible network interfaces, including real-time upload/ download stats
+Lists visible network interfaces, including real-time upload/ download stats.
+Use "Interfaces" to filter interfaces and give them am friendly name.

@@ -2672,6 +2678,9 @@ Lists visible network interfaces, including real-time upload/ download stats
- type: gl-network-interfaces
options:
hostname: http://192.168.130.2:61208
+ Interfaces:
+ - bond0: LAN
+ - docker0: Docker
```
---