package models type NetworkStats struct { Interfaces []InterfaceStats `json:"interfaces"` ConnectionCount int `json:"connectionCount"` } type InterfaceStats struct { Name string `json:"name"` RxBytes uint64 `json:"rxBytes"` TxBytes uint64 `json:"txBytes"` RxPackets uint64 `json:"rxPackets"` TxPackets uint64 `json:"txPackets"` }