mirror of
https://github.com/henrygd/beszel.git
synced 2025-12-17 10:46:16 +01:00
10 lines
212 B
Go
10 lines
212 B
Go
package container
|
|
|
|
type ContainerStats struct {
|
|
Name string `json:"n"`
|
|
Cpu float64 `json:"c"`
|
|
Mem float64 `json:"m"`
|
|
NetworkSent float64 `json:"ns"`
|
|
NetworkRecv float64 `json:"nr"`
|
|
}
|