Add go sdk

This commit is contained in:
Oliver
2026-01-06 14:55:21 +01:00
parent 32bcd6db9e
commit e018bedca3
21 changed files with 1090 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package performancemetrics
type PerformanceMetrics struct {
Uptime int64
CpuUsage float64
AllocatedMemory uint64
GoroutineCount int
DiskUsage DiskUsage
}
type DiskUsage struct {
Used uint64
Free uint64
Total uint64
}