Initial Proxmox dashboard with host and guest metrics

This commit is contained in:
maxim
2026-07-31 19:51:22 +03:00
commit 584ff7e8ee
21 changed files with 1780 additions and 0 deletions

9
zfs_test.go Normal file
View File

@@ -0,0 +1,9 @@
package main
import "testing"
func TestParsePercent(t *testing.T) {
if value := parsePercent("37%"); value != 37 {
t.Fatalf("неожиданный процент: %v", value)
}
}