package model type Metrics struct { Namespace string Sessions map[string]SessionMetrics } type SessionMetrics struct { BytesRead int64 BytesWritten int64 LastUpdate int64 }